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

class Item;

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

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