Progness
This commit is contained in:
22
src/overworld/map.h
Normal file
22
src/overworld/map.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Copyright (c) 2026 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "mapentity.h"
|
||||
|
||||
#define MAP_ENTITY_COUNT_MAX 32
|
||||
|
||||
typedef struct {
|
||||
mapentity_t entities[MAP_ENTITY_COUNT_MAX];
|
||||
} map_t;
|
||||
|
||||
extern map_t MAP;
|
||||
|
||||
/**
|
||||
* Initialize the overworld map.
|
||||
*/
|
||||
void mapInit(void);
|
||||
Reference in New Issue
Block a user