CheatMenuSA/src/defines.h

26 lines
645 B
C
Raw Normal View History

2022-06-15 06:45:43 -04:00
#pragma once
#define _GTA_
#define INPUT_BUFFER_SIZE 64
#define SPAWN_PED_LIMIT 20
#define DISCORD_INVITE "https://discord.gg/ZzW7kmf"
#define GITHUB_LINK "https://github.com/user-grinch/Cheat-Menu"
#define IMGUI_DEFINE_MATH_OPERATORS
#define MENU_NAME "Cheat Menu"
#define MENU_VERSION_NUMBER "3.3"
#define MENU_VERSION MENU_VERSION_NUMBER"-beta"
2022-06-26 08:21:28 -04:00
#define BUILD_NUMBER "20220626"
2022-06-15 06:45:43 -04:00
#define MENU_TITLE MENU_NAME " v" MENU_VERSION
#ifdef GTASA
#define BY_GAME(sa, vc, iii) sa
#elif GTAVC
#define BY_GAME(sa, vc, iii) vc
#elif GTA3
#define BY_GAME(sa, vc, iii) iii
#endif
#define FILE_NAME BY_GAME("CheatMenuSA" , "CheatMenuVC", "CheatMenuIII")