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

10 lines
142 B
C#

namespace Pausable
{
public interface IPausable
{
bool IsPaused { get; }
void Pause();
void Resume();
}
}