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