Added font sizing, needs full testing

This commit is contained in:
2021-08-03 10:19:31 -07:00
parent c451538def
commit 23f1cb3d7e
17 changed files with 202 additions and 15 deletions

20
src/game/dawn/dawngame.c Normal file
View File

@ -0,0 +1,20 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "dawngame.h"
bool dawnGameInit(game_t *game) {
return true;
}
void dawnGameUpdate(game_t *game) {
}
void dawnGameDispose(game_t *game) {
}