14 lines
224 B
C
14 lines
224 B
C
// SPDX-License-Identifier: BSD-3-Clause
|
|
#ifdef BLOCK_H
|
|
#define BLOCK_H
|
|
|
|
#include "../types.h"
|
|
|
|
typedef u16 block_id;
|
|
|
|
#define BLOCK_AIR_ID 0
|
|
#define BLOCK_STONE_ID 1
|
|
#define BLOCK_DIRT_ID 1
|
|
#define BLOCK_GRASS_ID 1
|
|
|
|
#endif
|