Added Map Rendering
This commit is contained in:
parent
37a249dc62
commit
ea72294a3e
8 changed files with 114 additions and 97 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue