Files
dusk/archive/rpg/game.c
2025-10-06 19:14:52 -05:00

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) {
}