mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 09:25:35 +00:00
14 lines
No EOL
337 B
C#
14 lines
No EOL
337 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Interactables;
|
|
|
|
public interface IInteractable
|
|
{
|
|
public bool Activate(ActivationType activationType = ActivationType.Toggle);
|
|
public bool CanActivate();
|
|
|
|
public Vector2 GetGlobalPosition2D();
|
|
|
|
public Vector2 GetScreenPosition();
|
|
//protected bool MeetsRequirements();
|
|
} |