mirror of
https://github.com/FalloutCollaborationProject/FCP-Tools.git
synced 2026-07-27 16:59:37 -07:00
12 lines
353 B
C#
12 lines
353 B
C#
// ReSharper disable UnassignedField.Global
|
|
namespace FCP.Core;
|
|
|
|
[UsedImplicitly]
|
|
public class CharacterDef : Def
|
|
{
|
|
public PawnKindDef pawnKind;
|
|
public XenotypeDef xenotype;
|
|
public FactionDef faction;
|
|
[UsedImplicitly] public List<CharacterBaseDefinition> definitions = [];
|
|
[UsedImplicitly] public List<CharacterRole> roles = [];
|
|
} |