From 5a9b98455f582fb6125c00d8b49b40ae808de932 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Wed, 15 Jul 2020 14:59:43 -0400 Subject: [PATCH] Add TODO about World taking in a GraphicsDevice --- Shared/World.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Shared/World.cs b/Shared/World.cs index e1bb2f5..d6fded3 100644 --- a/Shared/World.cs +++ b/Shared/World.cs @@ -26,6 +26,7 @@ namespace SemiColinGames { public readonly int Width; public readonly int Height; + // TODO: it seems weird that World takes in a GraphicsDevice. Remove it? public World(GraphicsDevice graphics, string json) { Camera = new Camera(); LinesOfSight = new LinesOfSight(graphics);