BGJ-2022.1/Assets/Scripts/Pausable/IPausable.cs

10 lines
142 B
C#
Raw Normal View History

2022-02-21 14:25:17 +03:00
namespace Pausable
{
public interface IPausable
{
bool IsPaused { get; }
void Pause();
void Resume();
}
}