cirnogodot/Scripts/IActivable.cs

7 lines
153 B
C#
Raw Permalink Normal View History

2025-01-20 12:17:27 +01:00
namespace Cirno.Scripts;
public interface IActivable
{
2025-03-09 21:58:25 +01:00
bool Activate(ActivationType activationType = ActivationType.Toggle);
2025-06-18 11:33:27 +02:00
void Toggle();
2025-01-20 12:17:27 +01:00
}