mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-05 22:15:54 +00:00
8 lines
178 B
C#
8 lines
178 B
C#
|
|
namespace Cirno.Scripts.Interactables;
|
|||
|
|
|
|||
|
|
public interface IInteractable
|
|||
|
|
{
|
|||
|
|
public bool Activate();
|
|||
|
|
public bool CanActivate();
|
|||
|
|
//protected bool MeetsRequirements();
|
|||
|
|
}
|