GTAV-Classes/rage/scrValue.hpp
2024-09-25 01:24:45 +00:00

19 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;
}
};
}