summaryrefslogtreecommitdiff
path: root/DSACore/Controllers
diff options
context:
space:
mode:
authoruzvkl <dennis.kobert@student.kit.edu>2019-06-11 22:46:57 +0200
committeruzvkl <dennis.kobert@student.kit.edu>2019-06-11 22:46:57 +0200
commit2490ad5d31fe2ac778ff9303776f0e91f47a2862 (patch)
tree4b2b2b284897cd239ecbc3a2d4efa6d5d103057f /DSACore/Controllers
parentc80384ca8b729677d78934476e7b193b5327ae40 (diff)
Organize groups to seperate connention management form gamelogic
Diffstat (limited to 'DSACore/Controllers')
-rw-r--r--DSACore/Controllers/CommandsController.cs1
-rw-r--r--DSACore/Controllers/LobbyController.cs3
2 files changed, 3 insertions, 1 deletions
diff --git a/DSACore/Controllers/CommandsController.cs b/DSACore/Controllers/CommandsController.cs
index 2ab9c96..b6e0be2 100644
--- a/DSACore/Controllers/CommandsController.cs
+++ b/DSACore/Controllers/CommandsController.cs
@@ -1,4 +1,5 @@
using System;
+using DSACore.Models.Network;
using DSALib.Commands;
using DSALib.Models.Network;
using Microsoft.AspNetCore.Mvc;
diff --git a/DSACore/Controllers/LobbyController.cs b/DSACore/Controllers/LobbyController.cs
index c861eac..7890b4f 100644
--- a/DSACore/Controllers/LobbyController.cs
+++ b/DSACore/Controllers/LobbyController.cs
@@ -1,6 +1,7 @@
using System;
-using DSALib.Models.Network;
+using DSACore.Models.Network;
using DSALib.Commands;
+using DSALib.Models.Network;
using Microsoft.AspNetCore.Mvc;
namespace DSACore.Controllers