NasNas
An intuitive and beginner friendly 2D game framework for C++
include
NasNas
core
AppState.hpp
1
// Created by Modar Nasser on 05/09/2021.
2
3
#pragma once
4
5
#include <SFML/Window/Event.hpp>
6
7
namespace
ns
{
8
struct
AppStateInterface
{
9
virtual
void
onEvent(
const
sf::Event&) {}
10
virtual
void
update() {}
11
virtual
void
preRender() {}
12
};
13
14
struct
AppState
:
AppStateInterface
{
15
virtual
~
AppState
() =
default
;
16
virtual
void
setup() {};
17
};
18
}
ns::AppStateInterface
Definition:
AppState.hpp:8
ns
ns::AppState
Definition:
AppState.hpp:14
Generated by
1.8.13