2025-08-13 22:53:57 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2025-08-07 16:44:43 +08:00
|
|
|
namespace Data
|
|
|
|
{
|
2025-08-13 22:53:57 +08:00
|
|
|
public enum Relation
|
|
|
|
{
|
|
|
|
Neutral,
|
|
|
|
Hostile,
|
|
|
|
Friendly,
|
|
|
|
}
|
2025-08-17 23:01:43 +08:00
|
|
|
|
2025-08-07 16:44:43 +08:00
|
|
|
public class AffiliationDef : Define
|
|
|
|
{
|
2025-08-13 22:53:57 +08:00
|
|
|
public Relation defaultRelation = Relation.Neutral;
|
2025-08-17 23:01:43 +08:00
|
|
|
public List<string> hostileFactions = new();
|
|
|
|
public List<string> neutralFactions = new();
|
|
|
|
public List<string> friendlyFactions = new();
|
2025-08-07 16:44:43 +08:00
|
|
|
}
|
|
|
|
}
|