CheatMenuSA/src/NeonAPI.h

16 lines
282 B
C
Raw Normal View History

2020-12-02 16:19:16 -05:00
#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);
};