diff --git a/Domito.sln b/Domito.sln
new file mode 100644
index 0000000..238be1f
--- /dev/null
+++ b/Domito.sln
@@ -0,0 +1,31 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.6.33723.286
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Domito", "src\Domito.vcxproj", "{22836709-3931-4469-93A3-6074A95FF1F8}"
+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
+ {22836709-3931-4469-93A3-6074A95FF1F8}.Debug|x64.ActiveCfg = Debug|x64
+ {22836709-3931-4469-93A3-6074A95FF1F8}.Debug|x64.Build.0 = Debug|x64
+ {22836709-3931-4469-93A3-6074A95FF1F8}.Debug|x86.ActiveCfg = Debug|Win32
+ {22836709-3931-4469-93A3-6074A95FF1F8}.Debug|x86.Build.0 = Debug|Win32
+ {22836709-3931-4469-93A3-6074A95FF1F8}.Release|x64.ActiveCfg = Release|x64
+ {22836709-3931-4469-93A3-6074A95FF1F8}.Release|x64.Build.0 = Release|x64
+ {22836709-3931-4469-93A3-6074A95FF1F8}.Release|x86.ActiveCfg = Release|Win32
+ {22836709-3931-4469-93A3-6074A95FF1F8}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {D47E1638-9851-450A-8718-C7C2D53148F9}
+ EndGlobalSection
+EndGlobal
diff --git a/src/Domito.cpp b/src/Domito.cpp
new file mode 100644
index 0000000..7a3b251
--- /dev/null
+++ b/src/Domito.cpp
@@ -0,0 +1,6 @@
+// Domito.cpp : Defines the functions for the static library.
+//
+
+#include "pch.h"
+#include "Domito.h"
+
diff --git a/src/Domito.h b/src/Domito.h
new file mode 100644
index 0000000..3f59c93
--- /dev/null
+++ b/src/Domito.h
@@ -0,0 +1,2 @@
+#pragma once
+
diff --git a/src/Domito.vcxproj b/src/Domito.vcxproj
new file mode 100644
index 0000000..6a373fe
--- /dev/null
+++ b/src/Domito.vcxproj
@@ -0,0 +1,157 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+
+ 16.0
+ Win32Proj
+ {22836709-3931-4469-93a3-6074a95ff1f8}
+ Domito
+ 10.0
+
+
+
+ StaticLibrary
+ true
+ v143
+ Unicode
+
+
+ StaticLibrary
+ false
+ v143
+ true
+ Unicode
+
+
+ StaticLibrary
+ true
+ v143
+ Unicode
+
+
+ StaticLibrary
+ false
+ v143
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Level3
+ true
+ WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)
+ true
+ Use
+ pch.h
+
+
+
+
+ true
+
+
+
+
+ Level3
+ true
+ true
+ true
+ WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
+ true
+ Use
+ pch.h
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+ Level3
+ true
+ _DEBUG;_LIB;%(PreprocessorDefinitions)
+ true
+ Use
+ pch.h
+
+
+
+
+ true
+
+
+
+
+ Level3
+ true
+ true
+ true
+ NDEBUG;_LIB;%(PreprocessorDefinitions)
+ true
+ Use
+ pch.h
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
+
+
+
+ Create
+ Create
+ Create
+ Create
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Domito.vcxproj.filters b/src/Domito.vcxproj.filters
new file mode 100644
index 0000000..184dc8a
--- /dev/null
+++ b/src/Domito.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
+
+
+
+
+ Header Files
+
+
+ Header Files
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+
\ No newline at end of file
diff --git a/src/pch.cpp b/src/pch.cpp
new file mode 100644
index 0000000..64b7eef
--- /dev/null
+++ b/src/pch.cpp
@@ -0,0 +1,5 @@
+// pch.cpp: source file corresponding to the pre-compiled header
+
+#include "pch.h"
+
+// When you are using pre-compiled headers, this source file is necessary for compilation to succeed.
diff --git a/src/pch.h b/src/pch.h
new file mode 100644
index 0000000..05471fc
--- /dev/null
+++ b/src/pch.h
@@ -0,0 +1,13 @@
+// pch.h: This is a precompiled header file.
+// Files listed below are compiled only once, improving build performance for future builds.
+// This also affects IntelliSense performance, including code completion and many code browsing features.
+// However, files listed here are ALL re-compiled if any one of them is updated between builds.
+// Do not add files here that you will be updating frequently as this negates the performance advantage.
+
+#ifndef PCH_H
+#define PCH_H
+
+// add headers that you want to pre-compile here
+#include "Domito.h"
+
+#endif //PCH_H