CheatMenuSA/CheatMenu/NeonAPI.h
2020-12-03 03:19:16 +06:00

16 lines
282 B
C++

#pragma once
class NeonAPI
{
private:
static bool api_installed;
static HMODULE hapi;
public:
NeonAPI();
~NeonAPI();
static bool InstallNeon(CVehicle *veh, int red, int green, int blue);
static bool IsNeonInstalled(CVehicle *veh);
static bool RemoveNeon(CVehicle *veh);
};