diff --git a/CrosshairMod.sln b/CrosshairMod.sln
new file mode 100644
index 0000000..d3b1e81
--- /dev/null
+++ b/CrosshairMod.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.29123.88
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CrosshairMod", "CrosshairMod\CrosshairMod.csproj", "{363B8EB5-F528-4FF2-8B9E-57C93D009DFC}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {363B8EB5-F528-4FF2-8B9E-57C93D009DFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {363B8EB5-F528-4FF2-8B9E-57C93D009DFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {363B8EB5-F528-4FF2-8B9E-57C93D009DFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {363B8EB5-F528-4FF2-8B9E-57C93D009DFC}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {A0507B5B-B2BD-4486-A9F8-A91D693BE3A0}
+ EndGlobalSection
+EndGlobal
diff --git a/CrosshairMod/CrosshairMod.csproj b/CrosshairMod/CrosshairMod.csproj
new file mode 100644
index 0000000..47088f0
--- /dev/null
+++ b/CrosshairMod/CrosshairMod.csproj
@@ -0,0 +1,51 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {363B8EB5-F528-4FF2-8B9E-57C93D009DFC}
+ Library
+ Properties
+ CrosshairMod
+ CrosshairMod
+ v4.7.2
+ 512
+ true
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+ ..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Blackwake\Blackwake_Data\Managed\UnityEngine.dll
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CrosshairMod/Main.cs b/CrosshairMod/Main.cs
new file mode 100644
index 0000000..52c1e4d
--- /dev/null
+++ b/CrosshairMod/Main.cs
@@ -0,0 +1,156 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using UnityEngine;
+
+namespace Mod
+{
+ public class Main : MonoBehaviour
+ {
+ private void Log(string message)
+ {
+ System.Console.WriteLine("[CROSSHAIRMOD]" + message);
+ }
+
+ private Dictionary m_settings = new Dictionary();
+ private Texture2D crosshair = new Texture2D(-1, -1);
+ private bool m_validState = true;
+
+ // Reads settings file and sets all variables
+ private bool readSettings(string filepath, ref Dictionary sett_dict)
+ {
+ Log("Accessing Settings at " + filepath);
+
+ string settings = "";
+ try
+ {
+ settings = System.IO.File.ReadAllText(filepath);
+ } catch(Exception e)
+ {
+ Log(e.Message);
+ return false;
+ }
+
+ sett_dict = new Dictionary();
+
+ string[] lines = settings.Split('\n');
+ foreach (string line in lines)
+ {
+ if (line == "")
+ continue;
+
+ string[] vals = line.Split('=');
+
+ sett_dict.Add(vals[0], Int32.Parse(vals[1]));
+ }
+
+ return true;
+ }
+
+ // Creates a crosshair texture
+ private bool createCrossTexture(ref Texture2D texture)
+ {
+ int m_crosshairLength = 0, m_crosshairThickness = 0, m_crosshairColorRed = 0, m_crosshairColorGreen = 0, m_crosshairColorBlue = 0, m_crosshairColorAlpha = 0;
+ if(!m_settings.TryGetValue("crosshairLength", out m_crosshairLength))
+ {
+ Log("Missing Setting: crosshairLength");
+ return false;
+ }
+
+ if (!m_settings.TryGetValue("crosshairThickness", out m_crosshairThickness))
+ {
+ Log("Missing Setting: crosshairThickness");
+ return false;
+ }
+
+ if (!m_settings.TryGetValue("crosshairColorRed", out m_crosshairColorRed))
+ {
+ Log("Missing Setting: crosshairColorRed");
+ return false;
+ }
+
+ if (!m_settings.TryGetValue("crosshairColorGreen", out m_crosshairColorGreen))
+ {
+ Log("Missing Setting: crosshairColorGreen");
+ return false;
+ }
+
+ if (!m_settings.TryGetValue("crosshairColorBlue", out m_crosshairColorBlue))
+ {
+ Log("Missing Setting: crosshairColorBlue");
+ return false;
+ }
+
+ if (!m_settings.TryGetValue("crosshairColorAlpha", out m_crosshairColorAlpha))
+ {
+ Log("Missing Setting: crosshairColorAlpha");
+ return false;
+ }
+
+ Color m_crosshairColor = new Color(m_crosshairColorRed / 255f,
+ m_crosshairColorGreen / 255f,
+ m_crosshairColorBlue / 255f,
+ m_crosshairColorAlpha / 255f);
+
+ // Lazy
+ m_crosshairThickness += (m_crosshairThickness % 2 == 0) ? 1 : 0;
+
+ // Create Texture with approprate dimensions. The m_crosshairLength is the distance
+ // between center and end-of-line (end-points included)
+ texture = new Texture2D((m_crosshairLength - 1) * 2 + 1, (m_crosshairLength - 1) * 2 + 1);
+
+
+ // Fill Texture with some color where alpha = 0
+ for (int y = 0; y < texture.height; y++)
+ for (int x = 0; x < texture.width; x++)
+ texture.SetPixel(x, y, new Color(0, 0, 0, 0));
+
+ // The texture will always have odd dimensions, so we can be sure that there will be a definite center (which is m_crossheirLength)
+ // Draw vertical line:
+ for (int y = 0; y < texture.height; y++)
+ {
+ for (int i = 0; i < m_crosshairThickness; i++)
+ {
+ texture.SetPixel(m_crosshairLength - (int)Math.Floor((double)m_crosshairThickness / 2) + i - 1, y, m_crosshairColor);
+ }
+ }
+
+ // Draw horizontal line:
+ for (int x = 0; x < texture.height; x++)
+ {
+ for (int i = 0; i < m_crosshairThickness; i++)
+ {
+ texture.SetPixel(x, m_crosshairLength - (int)Math.Floor((double)m_crosshairThickness / 2) + i - 1, m_crosshairColor);
+ }
+ }
+
+ texture.wrapMode = TextureWrapMode.Repeat;
+ texture.Apply();
+
+ return true;
+ }
+
+
+ void Start()
+ {
+ m_validState = readSettings(".\\Blackwake_Data\\Managed\\Mods\\chSettings.sett", ref m_settings);
+ foreach (KeyValuePair setting in m_settings)
+ Log(setting.Key + ": " + setting.Value);
+ }
+ void OnGUI()
+ {
+ if (m_validState)
+ {
+ m_validState = createCrossTexture(ref crosshair);
+
+ GUIStyle style = new GUIStyle();
+ style.normal.background = crosshair;
+
+ GUI.Label(new Rect(Screen.width / 2 - crosshair.width / 2, Screen.height / 2 - crosshair.height / 2, crosshair.width, crosshair.height),
+ crosshair, style);
+ }
+ }
+ }
+}
diff --git a/CrosshairMod/Properties/AssemblyInfo.cs b/CrosshairMod/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..30fceca
--- /dev/null
+++ b/CrosshairMod/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// Allgemeine Informationen über eine Assembly werden über die folgenden
+// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
+// die einer Assembly zugeordnet sind.
+[assembly: AssemblyTitle("CrosshairMod")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("CrosshairMod")]
+[assembly: AssemblyCopyright("Copyright © 2019")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
+// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
+// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
+[assembly: ComVisible(false)]
+
+// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
+[assembly: Guid("363b8eb5-f528-4ff2-8b9e-57c93d009dfc")]
+
+// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
+//
+// Hauptversion
+// Nebenversion
+// Buildnummer
+// Revision
+//
+// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
+// indem Sie "*" wie unten gezeigt eingeben:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]