This commit is contained in:
2026-04-09 11:53:11 -05:00
parent 4cd3355ef1
commit 0d7b0aadd1
46 changed files with 614 additions and 1032 deletions
+20
View File
@@ -0,0 +1,20 @@
/**
* Copyright (c) 2026 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "game.h"
errorret_t gameInit(void) {
errorOk();
}
errorret_t gameUpdate(void) {
errorOk();
}
errorret_t gameDispose(void) {
errorOk();
}