diff --git a/src/FluckyGame.Client/FluckyGame.Client/ClientSettings.cs b/src/FluckyGame.Client/FluckyGame.Client/ClientSettings.cs
new file mode 100644
index 0000000..a95f438
--- /dev/null
+++ b/src/FluckyGame.Client/FluckyGame.Client/ClientSettings.cs
@@ -0,0 +1,23 @@
+using System;
+
+namespace FluckyGame.Client
+{
+ internal class ClientSettings
+ {
+ public Resolution resolution;
+ public Server server;
+
+ public struct Resolution
+ {
+ public int width;
+ public int height;
+ public bool fullscreen;
+ }
+
+ public struct Server
+ {
+ public string hostname;
+ public int port;
+ }
+ }
+}
diff --git a/src/FluckyGame.Client/FluckyGame.Client/FluckyGame.Client.csproj b/src/FluckyGame.Client/FluckyGame.Client/FluckyGame.Client.csproj
index b43225c..2851362 100644
--- a/src/FluckyGame.Client/FluckyGame.Client/FluckyGame.Client.csproj
+++ b/src/FluckyGame.Client/FluckyGame.Client/FluckyGame.Client.csproj
@@ -64,6 +64,10 @@
+
+ ..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll
+ True
+
@@ -73,6 +77,7 @@
+
@@ -119,6 +124,12 @@
true
+
+
+ PreserveNewest
+
+
+