11 lines
281 B
C#
11 lines
281 B
C#
using UnityEngine;
|
|
|
|
namespace Reset.Items{
|
|
public class Ability : Item, IEquipable{
|
|
public NodeCanvas.Framework.Graph behaviourGraph;
|
|
public override void DrawItemInfo(Vector3 position){
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|