Start working Mug.cs

This commit is contained in:
Antoine H 2020-12-04 11:15:18 +01:00
parent 71d6586baf
commit 70024c7b6a
3 changed files with 37 additions and 10 deletions

View file

@ -8,5 +8,5 @@ public interface IGrabable
// int size {get; set;} //Size (1 or 2 hands) of the object
void use();
void take();
void drop(Transform position); //Drop to position
void drop(Vector2 position); //Drop to position
}