2025-09-24 11:24:38 +05:00

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
{
}
}