9 lines
114 B
C#
9 lines
114 B
C#
namespace Sasalka;
|
|
|
|
public interface IUseable
|
|
{
|
|
public void Use();
|
|
bool CanUse();
|
|
float Cooldown { get; }
|
|
}
|