31 lines
870 B
Ucode
31 lines
870 B
Ucode
|
//=============================================================================
|
||
|
// KFMapSummary
|
||
|
//=============================================================================
|
||
|
// Class Description
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
||
|
// - Author 11/25/2013
|
||
|
//=============================================================================
|
||
|
|
||
|
class KFMapSummary extends UIMapSummary;
|
||
|
|
||
|
enum EAssociationIdentifier
|
||
|
{
|
||
|
EAI_Custom,
|
||
|
EAI_OfficialCustom,
|
||
|
EAI_TripwireOfficial,
|
||
|
};
|
||
|
|
||
|
var config EAssociationIdentifier MapAssociation;
|
||
|
var config bool bPlayableInSurvival;
|
||
|
var config bool bPlayableInWeekly;
|
||
|
var config bool bPlayableInVsSurvival;
|
||
|
var config bool bPlayableInEndless;
|
||
|
var config bool bPlayableInObjective;
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
|
||
|
}
|