15 lines
264 B
C#
15 lines
264 B
C#
namespace FinalProject.Core
|
|
{
|
|
public class SimRunner : ISimRunner
|
|
{
|
|
public SimRunner()
|
|
{
|
|
|
|
}
|
|
|
|
public void RunSimulation()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |