Interaktionen 2.0
This commit is contained in:
18
3d Prototyp/Assets/Scripts/Interaction/PickupInteractible.cs
Normal file
18
3d Prototyp/Assets/Scripts/Interaction/PickupInteractible.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Interaction
|
||||
{
|
||||
public class PickupInteractible : Interactible
|
||||
{
|
||||
[SerializeField]
|
||||
private GameObject _model;
|
||||
|
||||
[SerializeField]
|
||||
private string _name;
|
||||
|
||||
public GameObject Model => _model;
|
||||
|
||||
public string Name => _name;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user