created Items

created IUsable.cs interface
This commit is contained in:
dhain 2022-05-09 23:06:01 +02:00
parent ca0718d286
commit 26ea595bfa
15 changed files with 297 additions and 0 deletions

View file

@ -0,0 +1,5 @@
using UnityEngine;
public interface IUsable {
public void select();
}