30 lines
574 B
C
30 lines
574 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include "game.h"
|
|
|
|
bool gameInit(game_t *game) {
|
|
// Init the engine and the rendering pipeline
|
|
engineInit(&game->engine);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool gameUpdate(game_t *game, float delta) {
|
|
// Let the engine do its thing.
|
|
engineUpdateStart(&game->engine, delta);
|
|
|
|
|
|
// Hand back to the engine.
|
|
return engineUpdateEnd(&game->engine);
|
|
}
|
|
|
|
void gameDispose(game_t *game) {
|
|
// Cleanup the game
|
|
|
|
engineDispose(&game->engine);
|
|
} |