Files
dusk/src/rpg/world/map.h
2025-06-08 17:36:13 -05:00

16 lines
253 B
C

/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "dusk.h"
typedef struct {
uint8_t width;
uint8_t height;
} map_t;
extern map_t MAP;