blob: 33d90fb8a4d987fb9a356b14551c5e4ca4874a1f (
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/world/voxel_registry.hh"
namespace world::player_target
{
extern voxel_id voxel;
extern voxel_pos coord;
extern voxel_pos normal;
extern const VoxelInfo* info;
} // namespace world::player_target
namespace world::player_target
{
void init(void);
void update(void);
void render(void);
} // namespace world::player_target
#endif // CLIENT_PLAYER_TARGET_HH
|