kelson8
2816ed42f0
Blow up all cars, show coods, blow something up, close car doors and more features to come.
25 lines
430 B
C++
25 lines
430 B
C++
#pragma once
|
|
//#include "pch.h"
|
|
#include "interface/ipage.h"
|
|
|
|
class TestPage : public IPage<TestPage>
|
|
{
|
|
public:
|
|
//bool m_test;
|
|
|
|
// This is just going to be a blank toggle.
|
|
//#ifdef GTASA
|
|
// bool m_saToggle;
|
|
//#endif
|
|
|
|
TestPage();
|
|
TestPage(const TestPage&);
|
|
void Draw();
|
|
void VehicleTest();
|
|
void PlayerTest();
|
|
|
|
};
|
|
|
|
extern TestPage& testPage;
|
|
|
|
// This doesn't do anything yet, I would like to add a custom tab to the Cheat menu
|