8 lines
134 B
C#
8 lines
134 B
C#
namespace ConsoleApp
|
|
{
|
|
public interface ISimRunner
|
|
{
|
|
void GenerateMaps(int x, int y);
|
|
void StartSim();
|
|
}
|
|
} |