20 lines
296 B
C
20 lines
296 B
C
/**
|
|
* 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();
|
|
} |