diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9a44da1
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.vs/
+build/
diff --git a/WinChat/WinChat.vcxproj b/WinChat/WinChat.vcxproj
new file mode 100644
index 0000000..75cbe83
--- /dev/null
+++ b/WinChat/WinChat.vcxproj
@@ -0,0 +1,92 @@
+
+
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+
+ 17.0
+ Win32Proj
+ {807f7b0f-884d-4a96-8a2b-57cd89232f61}
+ WinChat
+ 10.0
+
+
+
+ Application
+ true
+ v143
+ Unicode
+
+
+ Application
+ false
+ v143
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(ProjectDir)build\bin\$(Configuration)\
+ $(ProjectDir)build\int\$(Configuration)\
+
+
+ $(ProjectDir)build\bin\$(Configuration)\
+ $(ProjectDir)build\int\$(Configuration)\
+
+
+
+ Level3
+ true
+ _DEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ stdcpp20
+ true
+
+
+ Console
+ true
+
+
+
+
+ Level3
+ true
+ true
+ true
+ NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ stdcpp20
+ true
+
+
+ Console
+ true
+ true
+ true
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WinChat/WinChat.vcxproj.filters b/WinChat/WinChat.vcxproj.filters
new file mode 100644
index 0000000..a12df58
--- /dev/null
+++ b/WinChat/WinChat.vcxproj.filters
@@ -0,0 +1,22 @@
+
+
+
+
+ {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
+
+
+
\ No newline at end of file
diff --git a/WinChat/WinChat.vcxproj.user b/WinChat/WinChat.vcxproj.user
new file mode 100644
index 0000000..2c303bf
--- /dev/null
+++ b/WinChat/WinChat.vcxproj.user
@@ -0,0 +1,14 @@
+
+
+
+ true
+
+
+ $(OutDir)
+ WindowsLocalDebugger
+
+
+ $(OutDir)
+ WindowsLocalDebugger
+
+
\ No newline at end of file
diff --git a/WinChat/src/main.cpp b/WinChat/src/main.cpp
new file mode 100644
index 0000000..4182b9e
--- /dev/null
+++ b/WinChat/src/main.cpp
@@ -0,0 +1,8 @@
+#include
+
+int main(int argc, char* argv[]) {
+ std::printf("WinChat\n");
+
+ std::cin.get();
+ return EXIT_SUCCESS;
+}
\ No newline at end of file
diff --git a/WinChatSln.sln b/WinChatSln.sln
new file mode 100644
index 0000000..dad62f8
--- /dev/null
+++ b/WinChatSln.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.7.34024.191
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WinChat", "WinChat\WinChat.vcxproj", "{807F7B0F-884D-4A96-8A2B-57CD89232F61}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Release|x64 = Release|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {807F7B0F-884D-4A96-8A2B-57CD89232F61}.Debug|x64.ActiveCfg = Debug|x64
+ {807F7B0F-884D-4A96-8A2B-57CD89232F61}.Debug|x64.Build.0 = Debug|x64
+ {807F7B0F-884D-4A96-8A2B-57CD89232F61}.Release|x64.ActiveCfg = Release|x64
+ {807F7B0F-884D-4A96-8A2B-57CD89232F61}.Release|x64.Build.0 = Release|x64
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {1E26CF85-CF33-4C67-AFFE-1CF6C8612DEA}
+ EndGlobalSection
+EndGlobal