Display in hands Mug for Tavernkeeper

This commit is contained in:
Antoine H 2021-01-19 10:46:47 +01:00
parent aa850a7c0b
commit ca8790bb19
8 changed files with 109 additions and 16 deletions

View file

@ -7,6 +7,6 @@ public interface IGrabable: IUsable
{
//Unity inspector doesn't handle well interface...
int size {get; set;} //Size (1 or 2 hands) of the object
void take();
void drop(Vector2 position); //Drop to position
void take(Transform taker_tf=null);
void drop(Transform tf); //Drop at transform position
}