Added Map Rendering

This commit is contained in:
n0ffie 2025-03-18 23:00:42 +01:00
parent 37a249dc62
commit ea72294a3e
8 changed files with 114 additions and 97 deletions

View file

@ -10,8 +10,17 @@ bitfield OptionFlags {
bool CustomeTilemap : 1;
};
struct vec2<T> {
T x,y;
}[[single_color]];
struct TilemapInfo {
vec2<u32> dimentions;
vec2<u32> tile_size;
vec2<u32> tile_count;
u32 wall_tiles;
u32 other_tiles;
u32 special_tiles;
};
struct Options {