Refator pass 1
This commit is contained in:
25
archive/rpg/rpg.h
Normal file
25
archive/rpg/rpg.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* Copyright (c) 2025 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "rpg/world/map.h"
|
||||
|
||||
typedef struct {
|
||||
map_t *map;
|
||||
} rpg_t;
|
||||
|
||||
extern rpg_t RPG;
|
||||
|
||||
/**
|
||||
* Initializes the RPG subsystem.
|
||||
*/
|
||||
void rpgInit();
|
||||
|
||||
/**
|
||||
* Updates the RPG subsystem.
|
||||
*/
|
||||
void rpgUpdate();
|
Reference in New Issue
Block a user