GameVsJam/3d Prototyp/Assets/Scripts/Interaction/PickupInteractible.cs

18 lines
318 B
C#
Raw Normal View History

2024-04-07 00:09:53 +02:00
using UnityEngine;
namespace Interaction
{
public class PickupInteractible : Interactible
{
[SerializeField]
private GameObject _model;
[SerializeField]
private string _name;
public GameObject Model => _model;
public string Name => _name;
}
}