blob: ef7e629faaa0703be57597bbd15c51ee604d7fd4 (
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
|
//todo figure out where these should be and move them to those places
global function Spotting_Init
global function FW_Border_GlobalInit
global function IsVDUTitan
global function PIN_PlayerRodeoedEnemyTitanToCompletion
global function PlayerProgressionAllowed
void function Spotting_Init()
{
}
void function FW_Border_GlobalInit()
{
AddSpawnCallbackEditorClass( "func_brush", "func_brush_fw_territory_border", void function( entity e ) { GameModeRemove( e ) } )
}
bool function IsVDUTitan(entity titan)
{
return false
}
void function PIN_PlayerRodeoedEnemyTitanToCompletion( entity player, entity titan, bool playerHadBattery )
{
}
bool function PlayerProgressionAllowed( entity player )
{
return true
}
|