19 lines
702 B
Ucode
19 lines
702 B
Ucode
|
//=============================================================================
|
||
|
// KGameContentRoot
|
||
|
//=============================================================================
|
||
|
// Empty class loaded by UKFGameEngine::Init to keep KFGameContent from GC
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
||
|
// - Andrew "Strago" Ladenberger
|
||
|
//=============================================================================
|
||
|
|
||
|
class KFGameContentRoot extends Object;
|
||
|
|
||
|
/** (Debug) To force load a content class add it to this list */
|
||
|
var private const array<Object> Loaded;
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
}
|