Openable doors

This commit is contained in:
Marco 2025-01-20 12:17:27 +01:00
commit 447a43eda2
14 changed files with 319 additions and 32 deletions

6
Scripts/IActivable.cs Normal file
View file

@ -0,0 +1,6 @@
namespace Cirno.Scripts;
public interface IActivable
{
void Activate();
}