summaryrefslogtreecommitdiffstats
path: root/game/shared/game_items.hh
blob: 6f8eac989617053000ccd8e0f44456d4c7e5f6b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

namespace world
{
class Item;
} // namespace world

namespace game_items
{
extern const world::Item* stone;
extern const world::Item* cobblestone;
extern const world::Item* dirt;
extern const world::Item* grass;
extern const world::Item* oak_leaves;
extern const world::Item* oak_planks;
extern const world::Item* oak_log;
extern const world::Item* glass;
extern const world::Item* slime;
} // namespace game_items

namespace game_items
{
void populate(void);
} // namespace game_items