16 lines
253 B
C
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; |