blob: 5e9c56f0aded523ced5ce0f9cd3b5a28479b6f45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef CLIENT_VOXEL_ANIMS_HH
#define CLIENT_VOXEL_ANIMS_HH 1
#pragma once
namespace world::voxel_anims
{
extern std::uint64_t nextframe;
extern std::uint32_t frame;
} // namespace world::voxel_anims
namespace world::voxel_anims
{
void init(void);
void update(void);
} // namespace world::voxel_anims
#endif // CLIENT_VOXEL_ANIMS_HH
|