18 lines
318 B
C#
18 lines
318 B
C#
using UnityEngine;
|
|
|
|
namespace Interaction
|
|
{
|
|
public class PickupInteractible : Interactible
|
|
{
|
|
[SerializeField]
|
|
private GameObject _model;
|
|
|
|
[SerializeField]
|
|
private string _name;
|
|
|
|
public GameObject Model => _model;
|
|
|
|
public string Name => _name;
|
|
|
|
}
|
|
} |