libspades
Ace of Spades library
bothelpers.h
1#ifndef LIBSPADES_BOTHELPERS_H
2#define LIBSPADES_BOTHELPERS_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7enum KillMethod {
8 KillMethodWeaponSwitch = 1,
9 KillMethodCommand = 2,
10 KillMethodSpade = 4,
11 KillMethodGun = 8,
12 KillMethodGrenade = 16
13};
14
15#ifdef __cplusplus
16}
17#endif
18#endif