summaryrefslogtreecommitdiffstats
path: root/game/shared/game_items.hh
blob: 88952fcc150dfa111a8b534ce26ba834de887de6 (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
25
26
27
28
#ifndef SHARED_GAME_ITEMS
#define SHARED_GAME_ITEMS 1
#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

#endif // SHARED_GAME_ITEMS