summaryrefslogtreecommitdiffstats
path: root/game/client/player_target.hh
blob: b60d1a5ff7a49870c90e7643121c253191c01a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef CLIENT_PLAYER_TARGET_HH
#define CLIENT_PLAYER_TARGET_HH 1
#pragma once

#include "shared/voxel_registry.hh"

namespace player_target
{
extern voxel_id voxel;
extern voxel_pos coord;
extern voxel_pos normal;
extern const VoxelInfo* info;
} // namespace player_target

namespace player_target
{
void init(void);
void update(void);
void render(void);
} // namespace player_target

#endif /* CLIENT_PLAYER_TARGET_HH  */