From db2dc7b3215078bd05e0c21ba1ed2dff599cf78b Mon Sep 17 00:00:00 2001 From: Jadis0x <49281043+jadis0x@users.noreply.github.com> Date: Sun, 14 Apr 2024 00:05:47 +0300 Subject: [PATCH] misc header file added --- IL2CppDLL.vcxproj | 2 ++ IL2CppDLL.vcxproj.filters | 9 +++++++++ user/features/misc/misc.cpp | 12 ++++++++++++ user/features/misc/misc.h | 10 ++++++++++ 4 files changed, 33 insertions(+) create mode 100644 user/features/misc/misc.cpp create mode 100644 user/features/misc/misc.h 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