Food in Ärsche schieben

This commit is contained in:
Simon Lübeß
2024-04-07 12:39:05 +02:00
parent f9d950c557
commit feb82edcd1
3 changed files with 199 additions and 13 deletions

View File

@ -2,6 +2,13 @@
namespace Interaction
{
public enum ItemType
{
Mate,
Coffee,
Pizza
}
public class PickupInteractible : Interactible
{
[SerializeField]
@ -9,10 +16,17 @@ namespace Interaction
[SerializeField]
private string _name;
[SerializeField]
private ItemType _itemType;
public int UsesLeft = 1;
public GameObject Model => _model;
public string Name => _name;
public ItemType ItemType => _itemType;
}
}