All checks were successful
Build Dusk / run-tests (push) Successful in 2m12s
Build Dusk / build-linux (push) Successful in 1m49s
Build Dusk / build-psp (push) Successful in 1m52s
32 lines
494 B
C
32 lines
494 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "error/error.h"
|
|
|
|
typedef struct {
|
|
int32_t nothing;
|
|
} rpg_t;
|
|
|
|
/**
|
|
* Initialize the RPG subsystem.
|
|
*
|
|
* @return An error code and state.
|
|
*/
|
|
errorret_t rpgInit(void);
|
|
|
|
/**
|
|
* Update the RPG subsystem.
|
|
*
|
|
* @return An error code.
|
|
*/
|
|
errorret_t rpgUpdate(void);
|
|
|
|
/**
|
|
* Dispose of the RPG subsystem.
|
|
*/
|
|
void rpgDispose(void); |