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.
13 lines
370 B
13 lines
370 B
using UnityEngine;
|
|
using Skill_V2;
|
|
|
|
[CreateAssetMenu(fileName = "SkillProperty", menuName = "ScriptableObject/Skill/SkillProperty")]
|
|
public class SkillProperty : ScriptableObject
|
|
{
|
|
public uint id;
|
|
public Skill skillPrefab;
|
|
public SkillSequence[] sequences;
|
|
public StatCreator[] stats;
|
|
public BuffProperty[] _buffs;
|
|
public BuffProperty[] buffs;
|
|
}
|