forked from Misaki/GhostEngine
11 lines
135 B
C#
11 lines
135 B
C#
namespace Ghost.Test.Core;
|
|
|
|
public interface ITest
|
|
{
|
|
public void Setup();
|
|
|
|
public void Run();
|
|
|
|
public void Cleanup();
|
|
}
|