diff --git a/IL2CppDLL.vcxproj b/IL2CppDLL.vcxproj
index 2fff91c..24cb73a 100644
--- a/IL2CppDLL.vcxproj
+++ b/IL2CppDLL.vcxproj
@@ -53,6 +53,7 @@
+
@@ -89,6 +90,7 @@
+
diff --git a/IL2CppDLL.vcxproj.filters b/IL2CppDLL.vcxproj.filters
index e3e2a6c..2152a2d 100644
--- a/IL2CppDLL.vcxproj.filters
+++ b/IL2CppDLL.vcxproj.filters
@@ -70,6 +70,9 @@
user\utils
+
+ user\features\misc
+
@@ -174,6 +177,9 @@
user\utils
+
+ user\features\misc
+
@@ -209,5 +215,8 @@
{05b8437a-8e9b-425b-acbc-3dd8bca051c3}
+
+ {116f67d1-9398-4156-8fe3-93de590b3c57}
+
\ No newline at end of file
diff --git a/user/features/misc/misc.cpp b/user/features/misc/misc.cpp
new file mode 100644
index 0000000..3d41b6b
--- /dev/null
+++ b/user/features/misc/misc.cpp
@@ -0,0 +1,12 @@
+#include "pch-il2cpp.h"
+
+#include "misc.h"
+
+void Misc::SetRank(int rank)
+{
+ //
+}
+
+void Misc::SetSteamName(std::string& name)
+{
+}
diff --git a/user/features/misc/misc.h b/user/features/misc/misc.h
new file mode 100644
index 0000000..c4a7ea6
--- /dev/null
+++ b/user/features/misc/misc.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "settings/settings.hpp"
+
+#include
+
+namespace Misc {
+ void SetRank(int rank);
+ void SetSteamName(std::string& name);
+}
\ No newline at end of file