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.
15 lines
374 B
15 lines
374 B
using UnityEngine;
|
|
using UnityEngine.Serialization;
|
|
|
|
namespace Game {
|
|
[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;
|
|
}
|
|
}
|
|
|
|
|
|
|