mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
20 lines
344 B
C++
20 lines
344 B
C++
#pragma once
|
|
#include <cstdint>
|
|
using LPCSTR = const char*; //For Linux support, but I didn't want to make the class inaccurate
|
|
|
|
namespace rage
|
|
{
|
|
union scrValue
|
|
{
|
|
int Int;
|
|
unsigned int Uns;
|
|
float Float;
|
|
LPCSTR String;
|
|
scrValue* Reference;
|
|
uint64_t Any;
|
|
bool operator==(const scrValue& val) {
|
|
return Int == val.Int;
|
|
}
|
|
};
|
|
}
|