blob: c584209b5e70556465d6e4a13ab49e86952446c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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);
} // namespace player_target
#endif /* CLIENT_PLAYER_TARGET_HH */
|