aboutsummaryrefslogtreecommitdiff
path: root/eng/inc/gameng.h
blob: 9fc48a33e44c236e5825a392abb7bf9d14343b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include "game.h"

/* calls fatal on failure, consider it never returns NULL */
Game *game_create(void);

void game_destroy(Game *this);

void game_init(Game *this);

void game_update(Game *this);

void game_draw(Game *this);