Added missing header comments.
This commit is contained in:
@ -8,8 +8,24 @@
|
||||
#pragma once
|
||||
#include <dawn/dawn.h>
|
||||
|
||||
/**
|
||||
* Initializes the Dawn Game instance.
|
||||
*
|
||||
* @param game Game to instanciate.
|
||||
* @return True if successful otherwise false.
|
||||
*/
|
||||
bool dawnGameInit(game_t *game);
|
||||
|
||||
/**
|
||||
* Update the Dawn Game Instance.
|
||||
*
|
||||
* @param game Game to update.
|
||||
*/
|
||||
void dawnGameUpdate(game_t *game);
|
||||
|
||||
/**
|
||||
* Cleanup the dawn game instance.
|
||||
*
|
||||
* @param game Game to dispose.
|
||||
*/
|
||||
void dawnGameDispose(game_t *game);
|
Reference in New Issue
Block a user