eco2d/code/apps/server/source/blocks_list.c

9 lines
471 B
C
Raw Normal View History

2021-01-11 16:20:12 +00:00
#include "blocks.h"
2021-01-11 16:29:18 +00:00
#include "atlas_shared.h"
2021-01-11 16:20:12 +00:00
static block blocks[] = {
2021-01-11 16:29:18 +00:00
{.tex_id = ATLAS_XY(0, 0), .name = "base-ground", .flags = 0, .kind = BLOCK_KIND_GROUND, .biome = 0, .symbol = '.'},
{.tex_id = ATLAS_XY(1, 0), .name = "base-wall", .flags = BLOCK_FLAG_COLLISION, .kind = BLOCK_KIND_WALL, .biome = 0, .symbol = '#'},
{.tex_id = ATLAS_XY(0, 1), .name = "base-water", .flags = BLOCK_FLAG_COLLISION, .kind = BLOCK_KIND_WATER, .biome = 0, .symbol = '~'},
2021-01-11 16:20:12 +00:00
};