This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
NFRev1/Game/src/MainState.cpp
2021-08-30 23:52:26 -05:00

24 lines
329 B
C++

#include "MainState.h"
MainState::MainState(nf::Application* app) :
Gamestate(app)
{
}
void MainState::onEnter() {
Log("MainState onEnter!");
}
void MainState::update(double deltaTime) {
}
void MainState::render(nf::Renderer& renderer) {
}
void MainState::onExit() {
Log("MainState onExit!");
}