21 lines
291 B
C
21 lines
291 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include "game/game.h"
|
|
|
|
errorret_t gameInit(void) {
|
|
printf("Init RPG\n");
|
|
errorOk();
|
|
}
|
|
|
|
void gameUpdate(void) {
|
|
|
|
}
|
|
|
|
void gameDispose(void) {
|
|
|
|
} |