shithub: cstory

ref: a12bd7a4b7b4f482907f000b08889d7777873e59
dir: /src/Map.h/

View raw version
#pragma once
#include <stdint.h>

struct MAP_DATA
{
	uint8_t *data;
	uint8_t atrb[0x101]; //Why is this 257 bytes?
	int16_t width;
	int16_t length;
};

bool InitMapData2();