blob: 071515f3a5dc1bc8ddb9b2e7caeefe69c3b18150 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef TECH_H
#define TECH_H
#ifdef __cplusplus
extern "C"
{
#endif
enum tech_level
{
TECH_LEVEL_1,
TECH_LEVEL_2,
TECH_LEVEL_3
};
#ifdef __cplusplus
}
#endif
#endif /* TECH_H */
|