18 lines
391 B
C#
18 lines
391 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Data
|
|
{
|
|
public enum Relation
|
|
{
|
|
Neutral,
|
|
Hostile,
|
|
Friendly,
|
|
}
|
|
public class AffiliationDef : Define
|
|
{
|
|
public Relation defaultRelation = Relation.Neutral;
|
|
public List<string> hostileFactions;
|
|
public List<string> neutralFactions;
|
|
public List<string> friendlyFactions;
|
|
}
|
|
} |