GTAV-Classes/rage/scrValue.hpp

20 lines
344 B
C++
Raw Normal View History

2024-09-24 21:24:45 -04:00
#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;
}
};
}