🏗️ Plug a loader and GameRunner into the App
continuous-integration/drone/push Build is passing Details

pull/55/head
Alexis Drai 2 years ago
parent b59c239041
commit 908c725573

@ -6,6 +6,7 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Data\Data.csproj" />
<ProjectReference Include="..\Model\Model.csproj" />
</ItemGroup>

@ -1,5 +1,5 @@
using Model;
using System.Diagnostics;
using Data;
using Model;
namespace App
{
@ -7,7 +7,9 @@ namespace App
{
static void Main(string[] args)
{
Debug.WriteLine("HelloWorld");
ILoader loader = new Stub();
GameRunner gameRunner = loader.LoadApp();
// use gameRunner to play
}
}
}

Loading…
Cancel
Save