19 lines
444 B
Ucode
19 lines
444 B
Ucode
|
/**
|
||
|
* This is the class for list of GoreEffect
|
||
|
*
|
||
|
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
|
||
|
*/
|
||
|
|
||
|
class GameCrowd_ListOfAgents extends Object
|
||
|
hidecategories(Object)
|
||
|
placeable; // needed to show up in the Actor Classes list;
|
||
|
|
||
|
/** List of archetypes of agents to spawn when a population manager or crowd spawner is using this list. */
|
||
|
var() array<AgentArchetypeInfo> ListOfAgents;
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|