This commit is contained in:
Oscar
2025-06-10 02:09:21 +03:00
parent 38754d2b59
commit 6e784491fd
34 changed files with 1429 additions and 574 deletions

View File

@@ -0,0 +1,8 @@
namespace Sasalka;
public interface IUseable
{
public void Use();
bool CanUse();
float Cooldown { get; }
}