summaryrefslogtreecommitdiff
path: root/sourcemod/scripting/include/gokz/tpanglefix.inc
blob: fc8faa294c7ad001f6ff9364d44d47c53c32ae1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
	gokz-tpanglefix Plugin Include
	
	Website: https://github.com/KZGlobalTeam/gokz
*/

#if defined _gokz_tpanglefix_included_
#endinput
#endif
#define _gokz_tpanglefix_included_


// =====[ ENUMS ]=====

enum
{
	TPAngleFix_Disabled = 0, 
	TPAngleFix_Enabled, 
	TPANGLEFIX_COUNT
};


// =====[ CONSTANTS ]=====

#define TPANGLEFIX_OPTION_NAME "GOKZ - TPAngleFix"
#define TPANGLEFIX_OPTION_DESCRIPTION "TPAngleFix - 0 = Disabled, 1 = Enabled"


// =====[ DEPENDENCY ]=====

public SharedPlugin __pl_gokz_tpanglefix = 
{
	name = "gokz-tpanglefix", 
	file = "gokz-tpanglefix.smx", 
	#if defined REQUIRE_PLUGIN
	required = 1, 
	#else
	required = 0, 
	#endif
};