18 lines
331 B
C#
18 lines
331 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace TPSBR
|
||
|
{
|
||
|
public interface IInteraction
|
||
|
{
|
||
|
public string Name { get; }
|
||
|
public string Description { get; }
|
||
|
public Vector3 HUDPosition { get; }
|
||
|
public bool IsActive { get; }
|
||
|
//public GameObject GameObject { get; }
|
||
|
}
|
||
|
|
||
|
public interface IPickup : IInteraction
|
||
|
{
|
||
|
}
|
||
|
}
|