22 lines
364 B
C
22 lines
364 B
C
/**
|
|
* 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); |