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.
38 lines
703 B
C++
38 lines
703 B
C++
/******************************************************************************
|
|
* File - baseScene.cpp
|
|
* Author - Joey Pollack
|
|
* Date - 2021/10/27 (y/m/d)
|
|
* Mod Date - 2021/10/27 (y/m/d)
|
|
* Description - The interface class for tester scenes
|
|
******************************************************************************/
|
|
|
|
#include "base_scene.h"
|
|
|
|
namespace lunarium
|
|
{
|
|
BaseScene::BaseScene(uint32_t logCat)
|
|
: mLogCat(logCat)
|
|
{
|
|
|
|
}
|
|
|
|
void BaseScene::OnLoad()
|
|
{
|
|
|
|
}
|
|
|
|
void BaseScene::OnTick(double delta)
|
|
{
|
|
|
|
}
|
|
void BaseScene::OnKeyPress(InputManager::KeyPress kp)
|
|
{
|
|
|
|
}
|
|
|
|
void BaseScene::OnKeyRelease(Keyboard::Key k)
|
|
{
|
|
|
|
}
|
|
|
|
} |