blob: 7a8304846c400d3d9895c55cdc14720851313e4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef CLIENT_EXPERIMENTS_HH
#define CLIENT_EXPERIMENTS_HH 1
#pragma once
namespace experiments
{
void init(void);
void init_late(void);
void deinit(void);
void update(void);
void update_late(void);
} // namespace experiments
namespace experiments
{
void attack(void);
void interact(void);
} // namespace experiments
#endif // CLIENT_EXPERIMENTS_HH
|