summaryrefslogtreecommitdiff
path: root/src/game.hpp
blob: 8d23eaf9bddf63c473072d1176eca08d0d77f876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PKE_GAME_HPP
#define PKE_GAME_HPP

#include "plugin-types.hpp"
#include "window-types.hpp"

void Game_Main(PKEWindowProperties windowProps);

void pke_game_main_init(PKEWindowProperties windowProps, PKEPluginInterface *interfaces = nullptr, unsigned int n_interfaces = 0);
void pke_game_main_load();
void pke_game_main_run();
void pke_game_main_teardown();

#endif /* PKE_GAME_HPP */