8 lines
146 B
C#
8 lines
146 B
C#
namespace BriarQueen.Framework.Managers
|
|
{
|
|
public interface IManager
|
|
{
|
|
bool Initialized { get; }
|
|
void Initialize();
|
|
}
|
|
} |