diff --git a/.gitignore b/.gitignore
index 5be37b8..f171090 100644
--- a/.gitignore
+++ b/.gitignore
@@ -397,3 +397,4 @@ MigrationBackup/
Flare Client/.vs/Flare Client/v16/.suo
Flare Sharp/ClientBase/Modules/Modules/AntiHive.cs
Flare Sharp/ClientBase/Modules/Modules/HiveFly.cs
+.vs/
diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json
deleted file mode 100644
index 0cf5ea5..0000000
--- a/.vs/ProjectSettings.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "CurrentProjectSetting": "No Configurations"
-}
\ No newline at end of file
diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json
deleted file mode 100644
index d9b7935..0000000
--- a/.vs/VSWorkspaceState.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "ExpandedNodes": [
- "",
- "\\Flare Client",
- "\\Flare Client\\Imgui"
- ],
- "SelectedNode": "\\Flare Client\\Imgui",
- "PreviewInSolutionExplorer": false
-}
\ No newline at end of file
diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite
deleted file mode 100644
index 2bbe5a4..0000000
Binary files a/.vs/slnx.sqlite and /dev/null differ
diff --git a/FlareInjected/FlareInjected.vcxproj b/FlareInjected/FlareInjected.vcxproj
deleted file mode 100644
index c57252e..0000000
--- a/FlareInjected/FlareInjected.vcxproj
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Release
- Win32
-
-
- Debug
- x64
-
-
- Release
- x64
-
-
-
- 16.0
- {C76C50BE-DA5B-4E1C-99BC-5FA7DAEEE0A6}
- Win32Proj
- FlareInjected
- 10.0
-
-
-
- DynamicLibrary
- true
- v142
- Unicode
-
-
- DynamicLibrary
- false
- v142
- true
- Unicode
-
-
- DynamicLibrary
- true
- v142
- Unicode
-
-
- DynamicLibrary
- false
- v142
- true
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
-
-
- true
-
-
- false
-
-
- false
-
-
-
- Use
- Level3
- true
- _DEBUG;FLAREINJECTED_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)
- true
- pch.h
-
-
- Windows
- true
- false
-
-
-
-
- Use
- Level3
- true
- WIN32;_DEBUG;FLAREINJECTED_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)
- true
- pch.h
-
-
- Windows
- true
- false
-
-
-
-
- Use
- Level3
- true
- true
- true
- WIN32;NDEBUG;FLAREINJECTED_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)
- true
- pch.h
-
-
- Windows
- true
- true
- true
- false
-
-
-
-
- Use
- Level3
- true
- true
- true
- NDEBUG;FLAREINJECTED_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)
- true
- pch.h
-
-
- Windows
- true
- true
- true
- false
-
-
-
-
-
-
-
-
-
- Create
- Create
- Create
- Create
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FlareInjected/FlareInjected.vcxproj.filters b/FlareInjected/FlareInjected.vcxproj.filters
deleted file mode 100644
index bd9682f..0000000
--- a/FlareInjected/FlareInjected.vcxproj.filters
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hh;hpp;hxx;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/FlareInjected/dllmain.cpp b/FlareInjected/dllmain.cpp
deleted file mode 100644
index af8e701..0000000
--- a/FlareInjected/dllmain.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// dllmain.cpp : Defines the entry point for the DLL application.
-#include "pch.h"
-DWORD WINAPI startClr(LPVOID lpParam)
-{
- //Flare injected dll
- //Main loop
- while (1) {
-
- }
-}
-BOOL APIENTRY DllMain( HMODULE hModule,
- DWORD ul_reason_for_call,
- LPVOID lpReserved
- )
-{
- switch (ul_reason_for_call)
- {
- case DLL_PROCESS_ATTACH:
- CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)startClr, hModule, NULL, NULL);
- DisableThreadLibraryCalls(hModule);
- case DLL_THREAD_ATTACH:
- case DLL_THREAD_DETACH:
- case DLL_PROCESS_DETACH:
- break;
- }
- return TRUE;
-}
-
diff --git a/FlareInjected/framework.h b/FlareInjected/framework.h
deleted file mode 100644
index 54b83e9..0000000
--- a/FlareInjected/framework.h
+++ /dev/null
@@ -1,5 +0,0 @@
-#pragma once
-
-#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
-// Windows Header Files
-#include
diff --git a/FlareInjected/pch.cpp b/FlareInjected/pch.cpp
deleted file mode 100644
index 64b7eef..0000000
--- a/FlareInjected/pch.cpp
+++ /dev/null
@@ -1,5 +0,0 @@
-// 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/FlareInjected/pch.h b/FlareInjected/pch.h
deleted file mode 100644
index 885d5d6..0000000
--- a/FlareInjected/pch.h
+++ /dev/null
@@ -1,13 +0,0 @@
-// 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 "framework.h"
-
-#endif //PCH_H