9 lines
114 B
C#
9 lines
114 B
C#
namespace StoicGoose.Core.Interfaces
|
|
{
|
|
public interface IComponent
|
|
{
|
|
void Reset();
|
|
void Shutdown();
|
|
}
|
|
}
|