暂存
This commit is contained in:
17
Source/WulaFallenEmpire/PawnProductionEntry.cs
Normal file
17
Source/WulaFallenEmpire/PawnProductionEntry.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Verse;
|
||||
|
||||
namespace WulaFallenEmpire
|
||||
{
|
||||
/// <summary>
|
||||
/// A data class to hold information about a pawn to be produced in a queue.
|
||||
/// Used in XML definitions.
|
||||
/// </summary>
|
||||
public class PawnProductionEntry
|
||||
{
|
||||
// The PawnKindDef of the unit to spawn.
|
||||
public PawnKindDef pawnKind;
|
||||
|
||||
// The maximum number of this kind of unit to maintain.
|
||||
public int count = 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user