You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lunarium_OLD/src/run_modes/testbed/testbed.h

46 lines
1.0 KiB
C++

/******************************************************************************
* File - testbed.h
* Author - Joey Pollack
* Date - 2021/09/15 (y/m/d)
* Mod Date - 2021/09/15 (y/m/d)
* Description - Run a series of tests to verify engine functionality
******************************************************************************/
#ifndef TESTER_H_
#define TESTER_H_
#include <core/iRunMode.h>
#include <core/types.h>
#include "scenes/baseScene.h"
namespace lunarium
{
class Image;
class TestBed : public iRunMode
{
public:
TestBed();
OpRes Initialize();
void Shutdown();
void OnTick(double delta);
void OnRender(IGraphics* g);
void OnKeyPress(InputManager::KeyPress kp);
void SwitchScene(int id);
private:
TestBed(const TestBed&) = delete;
const TestBed& operator=(const TestBed&) = delete;
private: // Data
uint32_t mLogCat;
BaseScene* mpScene;
private: // Test methods
};
}
#endif // TESTER_H_