sourcemod-plugins/scripting/include/tkstopper.inc
2022-11-22 09:08:38 -06:00

13 lines
No EOL
292 B
C++

#if defined _tkstopper_included_
#endinput
#endif
#define _tkstopper_included_
enum TKImmunityType {
TKImmune_Teamkill = 1,
TKImmune_ReverseFriendlyFire = 2
}
native void SetImmunity(int target, TKImmunityType type, bool value);
native bool IsImmunity(int target, TKImmunityType type);