CheatMenuSA/src/test/test_world.h
kelson8 c3f56a3c25
Add radio test, reorganze code, make menus mostly not static.
Add more seperators for ImGui, remove extra code.
Add Train testing and radio testing, add corona test.
2024-06-17 12:46:16 -04:00

16 lines
300 B
C++

#pragma once
//#include "pch.h"
class WorldTestPage
{
private:
void Draw();
public:
// I had to change these two values to public for this to work, even though they arent in use.
WorldTestPage();
WorldTestPage(const WorldTestPage&);
//
//static void WorldTestMenu();
void WorldTestMenu();
};