Framework Setup

This commit is contained in:
2020-04-19 21:56:56 -06:00
parent 3d4a0515e5
commit 1acf94c900
220 changed files with 809047 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace FinalProject.Core
{
public class SimRunner : ISimRunner
{
public SimRunner()
{
}
public void RunSimulation()
{
throw new System.NotImplementedException();
}
}
}