mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2025-01-04 00:23:27 +08:00
add scrValue
This commit is contained in:
parent
bfe0ef0ded
commit
a4d4ff6706
17
rage/scrValue.hpp
Normal file
17
rage/scrValue.hpp
Normal 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;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user