add scrValue

This commit is contained in:
PliskinDev 2023-10-12 06:19:25 +03:00
parent bfe0ef0ded
commit a4d4ff6706

17
rage/scrValue.hpp Normal file
View File

@ -0,0 +1,17 @@
#pragma once
namespace rage
{
union scrValue
{
int m_Int;
unsigned int m_Uns;
float m_Float;
const char* m_String;
scrValue* m_reference;
unsigned long long m_Any;
bool operator==(const scrValue& value) {
return m_Int == value.m_Int;
}
};
}