Setup rpg stuff

This commit is contained in:
2025-10-08 07:11:53 -05:00
parent e36256abe3
commit 46f820690d
19 changed files with 592 additions and 20 deletions

20
src/rpg/rpg.c Normal file
View File

@@ -0,0 +1,20 @@
/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "rpg.h"
errorret_t rpgInit(void) {
errorOk();
}
void rpgUpdate(void) {
}
void rpgDispose(void) {
}