painfull-success-cg/include/level.h

11 lines
187 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
#include "conf.h"
#include "vec2.h"
typedef uint8_t tile_t;
typedef struct Level{
tile_t content[LEVEL_WIDTH * LEVEL_HEIGHT];
Vec2 start_pos;
} Level;