blob: 64e0892394efb383e83e4f9270e8b08d0f7697f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// todo figure out where these stub functions should be and move them to those places
global function FW_Border_GlobalInit
global function IsVDUTitan
void function FW_Border_GlobalInit()
{
AddSpawnCallbackEditorClass( "func_brush", "func_brush_fw_territory_border", RemoveFWBorder )
}
void function RemoveFWBorder( entity border )
{
if ( GameModeRemove( border ) )
return
if ( !border.HasKey( "gamemode_" + GAMETYPE ) )
border.Destroy()
}
bool function IsVDUTitan( entity titan )
{
return false
}
|