diff --git a/Game/Game.rc b/Game/Game.rc
new file mode 100644
index 0000000..3b3fdcb
--- /dev/null
+++ b/Game/Game.rc
@@ -0,0 +1,60 @@
+// Microsoft Visual C++ generated resource script.
+//
+
+#include "resource.h"
+
+#define APSTUDIO_READONLY_SYMBOLS
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 2 resource.
+//
+#include "winres.h"
+
+/////////////////////////////////////////////////////////////////////////////
+#undef APSTUDIO_READONLY_SYMBOLS
+
+/////////////////////////////////////////////////////////////////////////////
+// English (United States) resources
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
+LANGUAGE 9, 1
+
+#ifdef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// TEXTINCLUDE
+//
+
+1 TEXTINCLUDE
+BEGIN
+ "resource.h\0"
+END
+
+2 TEXTINCLUDE
+BEGIN
+ "#include ""winres.h""\r\n"
+ "\0"
+END
+
+3 TEXTINCLUDE
+BEGIN
+ "\r\n"
+ "\0"
+END
+
+#endif // APSTUDIO_INVOKED
+
+#endif // English (United States) resources
+/////////////////////////////////////////////////////////////////////////////
+
+
+
+#ifndef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 3 resource.
+//
+
+
+/////////////////////////////////////////////////////////////////////////////
+#endif // not APSTUDIO_INVOKED
diff --git a/Game/Game.vcxproj b/Game/Game.vcxproj
new file mode 100644
index 0000000..953d3f4
--- /dev/null
+++ b/Game/Game.vcxproj
@@ -0,0 +1,172 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+
+ 16.0
+ Win32Proj
+ {b7fec2d6-1d8f-487e-89cb-fd611fd1aeb6}
+ Game
+ 10.0
+
+
+
+ Application
+ true
+ v142
+ Unicode
+
+
+ Application
+ false
+ v142
+ true
+ Unicode
+
+
+ Application
+ true
+ v142
+ Unicode
+
+
+ Application
+ false
+ v142
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ $(ProjectDir)bin\$(Platform)$(Configuration)\
+ $(ProjectDir)int\$(Platform)$(Configuration)\
+
+
+ false
+ $(ProjectDir)bin\$(Platform)$(Configuration)\
+ $(ProjectDir)int\$(Platform)$(Configuration)\
+
+
+ true
+ $(ProjectDir)bin\$(Platform)$(Configuration)\
+ $(ProjectDir)int\$(Platform)$(Configuration)\
+
+
+ false
+ $(ProjectDir)bin\$(Platform)$(Configuration)\
+ $(ProjectDir)int\$(Platform)$(Configuration)\
+
+
+
+ Level3
+ true
+ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ $(ProjectDir)src\include\;$(SolutionDir)NothinFancy\src\include\
+
+
+ Windows
+ true
+ mainCRTStartup
+
+
+
+
+ Level3
+ true
+ true
+ true
+ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ $(ProjectDir)src\include\;$(SolutionDir)NothinFancy\src\include\
+
+
+ Console
+ true
+ true
+ true
+
+
+
+
+ Level3
+ true
+ _DEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ $(ProjectDir)src\include\;$(SolutionDir)NothinFancy\src\include\
+
+
+ Windows
+ true
+ mainCRTStartup
+
+
+
+
+ Level3
+ true
+ true
+ true
+ NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ $(ProjectDir)src\include\;$(SolutionDir)NothinFancy\src\include\
+
+
+ Console
+ true
+ true
+ true
+
+
+
+
+ {1b9c5361-e301-41bf-97e7-56d65f11e2bb}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Game/Game.vcxproj.filters b/Game/Game.vcxproj.filters
new file mode 100644
index 0000000..f4cf4bc
--- /dev/null
+++ b/Game/Game.vcxproj.filters
@@ -0,0 +1,32 @@
+
+
+
+
+ {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
+ cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx
+
+
+ {93995380-89BD-4b04-88EB-625FBE52EBFB}
+ h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd
+
+
+ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
+ rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
+
+
+
+
+ Source Files
+
+
+
+
+ Header Files
+
+
+
+
+ Resource Files
+
+
+
\ No newline at end of file
diff --git a/Game/Game.vcxproj.user b/Game/Game.vcxproj.user
new file mode 100644
index 0000000..966b4ff
--- /dev/null
+++ b/Game/Game.vcxproj.user
@@ -0,0 +1,6 @@
+
+
+
+ true
+
+
\ No newline at end of file
diff --git a/Game/resource.h b/Game/resource.h
new file mode 100644
index 0000000..675e3f3
--- /dev/null
+++ b/Game/resource.h
@@ -0,0 +1,14 @@
+//{{NO_DEPENDENCIES}}
+// Microsoft Visual C++ generated include file.
+// Used by Game.rc
+
+// Next default values for new objects
+//
+#ifdef APSTUDIO_INVOKED
+#ifndef APSTUDIO_READONLY_SYMBOLS
+#define _APS_NEXT_RESOURCE_VALUE 101
+#define _APS_NEXT_COMMAND_VALUE 40001
+#define _APS_NEXT_CONTROL_VALUE 1001
+#define _APS_NEXT_SYMED_VALUE 101
+#endif
+#endif
diff --git a/Game/src/Game.cpp b/Game/src/Game.cpp
new file mode 100644
index 0000000..b7a65e8
--- /dev/null
+++ b/Game/src/Game.cpp
@@ -0,0 +1,7 @@
+#include "Application.h"
+
+int main(int argc, char* argv[]) {
+
+
+ return 0;
+}
\ No newline at end of file
diff --git a/NothinFancy/NothinFancy.vcxproj b/NothinFancy/NothinFancy.vcxproj
new file mode 100644
index 0000000..caac4a1
--- /dev/null
+++ b/NothinFancy/NothinFancy.vcxproj
@@ -0,0 +1,164 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+
+ 16.0
+ Win32Proj
+ {1b9c5361-e301-41bf-97e7-56d65f11e2bb}
+ NothinFancy
+ 10.0
+
+
+
+ StaticLibrary
+ true
+ v142
+ Unicode
+
+
+ StaticLibrary
+ false
+ v142
+ true
+ Unicode
+
+
+ StaticLibrary
+ true
+ v142
+ Unicode
+
+
+ StaticLibrary
+ false
+ v142
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ $(ProjectDir)bin\$(Platform)$(Configuration)\
+ $(ProjectDir)int\$(Platform)$(Configuration)\
+
+
+ false
+ $(ProjectDir)bin\$(Platform)$(Configuration)\
+ $(ProjectDir)int\$(Platform)$(Configuration)\
+
+
+ true
+ $(ProjectDir)bin\$(Platform)$(Configuration)\
+ $(ProjectDir)int\$(Platform)$(Configuration)\
+
+
+ false
+ $(ProjectDir)bin\$(Platform)$(Configuration)\
+ $(ProjectDir)int\$(Platform)$(Configuration)\
+
+
+
+ Level3
+ true
+ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ $(ProjectDir)src\include\
+
+
+ Console
+ true
+
+
+
+
+ Level3
+ true
+ true
+ true
+ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ $(ProjectDir)src\include\
+
+
+ Console
+ true
+ true
+ true
+
+
+
+
+ Level3
+ true
+ _DEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ $(ProjectDir)src\include\
+
+
+ Console
+ true
+
+
+
+
+ Level3
+ true
+ true
+ true
+ NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ $(ProjectDir)src\include\
+
+
+ Console
+ true
+ true
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NothinFancy/NothinFancy.vcxproj.filters b/NothinFancy/NothinFancy.vcxproj.filters
new file mode 100644
index 0000000..19b3816
--- /dev/null
+++ b/NothinFancy/NothinFancy.vcxproj.filters
@@ -0,0 +1,33 @@
+
+
+
+
+ {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
+ cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx
+
+
+ {93995380-89BD-4b04-88EB-625FBE52EBFB}
+ h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd
+
+
+ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
+ rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+
+
+ Header Files
+
+
+
\ No newline at end of file
diff --git a/NothinFancy/NothinFancy.vcxproj.user b/NothinFancy/NothinFancy.vcxproj.user
new file mode 100644
index 0000000..966b4ff
--- /dev/null
+++ b/NothinFancy/NothinFancy.vcxproj.user
@@ -0,0 +1,6 @@
+
+
+
+ true
+
+
\ No newline at end of file
diff --git a/NothinFancy/src/Application.cpp b/NothinFancy/src/Application.cpp
new file mode 100644
index 0000000..1fbebef
--- /dev/null
+++ b/NothinFancy/src/Application.cpp
@@ -0,0 +1,7 @@
+#include "Application.h"
+
+namespace nf {
+ Application::Application(Config& config) {
+
+ }
+}
\ No newline at end of file
diff --git a/NothinFancy/src/Config.cpp b/NothinFancy/src/Config.cpp
new file mode 100644
index 0000000..e69de29
diff --git a/NothinFancy/src/include/Application.h b/NothinFancy/src/include/Application.h
new file mode 100644
index 0000000..8db660e
--- /dev/null
+++ b/NothinFancy/src/include/Application.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "Config.h"
+
+namespace nf {
+ class Application {
+ public:
+ Application(Config& conf) {
+
+ }
+
+ private:
+
+ };
+}
\ No newline at end of file
diff --git a/NothinFancy/src/include/Config.h b/NothinFancy/src/include/Config.h
new file mode 100644
index 0000000..1ee167d
--- /dev/null
+++ b/NothinFancy/src/include/Config.h
@@ -0,0 +1,12 @@
+#pragma once
+
+namespace nf {
+ class Config {
+ public:
+ Config() {
+
+ }
+ private:
+
+ };
+}
\ No newline at end of file
diff --git a/STEMSln.sln b/STEMSln.sln
new file mode 100644
index 0000000..6438936
--- /dev/null
+++ b/STEMSln.sln
@@ -0,0 +1,41 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31605.320
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NothinFancy", "NothinFancy\NothinFancy.vcxproj", "{1B9C5361-E301-41BF-97E7-56D65F11E2BB}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Game", "Game\Game.vcxproj", "{B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {1B9C5361-E301-41BF-97E7-56D65F11E2BB}.Debug|x64.ActiveCfg = Debug|x64
+ {1B9C5361-E301-41BF-97E7-56D65F11E2BB}.Debug|x64.Build.0 = Debug|x64
+ {1B9C5361-E301-41BF-97E7-56D65F11E2BB}.Debug|x86.ActiveCfg = Debug|Win32
+ {1B9C5361-E301-41BF-97E7-56D65F11E2BB}.Debug|x86.Build.0 = Debug|Win32
+ {1B9C5361-E301-41BF-97E7-56D65F11E2BB}.Release|x64.ActiveCfg = Release|x64
+ {1B9C5361-E301-41BF-97E7-56D65F11E2BB}.Release|x64.Build.0 = Release|x64
+ {1B9C5361-E301-41BF-97E7-56D65F11E2BB}.Release|x86.ActiveCfg = Release|Win32
+ {1B9C5361-E301-41BF-97E7-56D65F11E2BB}.Release|x86.Build.0 = Release|Win32
+ {B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}.Debug|x64.ActiveCfg = Debug|x64
+ {B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}.Debug|x64.Build.0 = Debug|x64
+ {B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}.Debug|x86.ActiveCfg = Debug|Win32
+ {B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}.Debug|x86.Build.0 = Debug|Win32
+ {B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}.Release|x64.ActiveCfg = Release|x64
+ {B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}.Release|x64.Build.0 = Release|x64
+ {B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}.Release|x86.ActiveCfg = Release|Win32
+ {B7FEC2D6-1D8F-487E-89CB-FD611FD1AEB6}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {AAE58A1A-706E-4E24-974A-9FD1D3BB2B2D}
+ EndGlobalSection
+EndGlobal