🏗️ 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> </PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Data\Data.csproj" />
<ProjectReference Include="..\Model\Model.csproj" /> <ProjectReference Include="..\Model\Model.csproj" />
</ItemGroup> </ItemGroup>

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

Loading…
Cancel
Save