You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
425 B

using UnityEngine;
namespace Game {
public enum ModType { Nerf, Buff }
public enum ModEffect { Speed, Border, Width }
[CreateAssetMenu(fileName = "Data", menuName = "ScriptableObjects/ModificationProperties", order = 0)]
public class ModificationProperties : ScriptableObject {
public ModType type;
public ModEffect effect;
public float pickupDuration;
public float activeDuration;
public Sprite image;
}
}