init 1.1.2

This commit is contained in:
2025-07-20 10:01:29 +08:00
commit 2afbbf9be4
1327 changed files with 1596159 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace EmeraldAI
{
[System.Serializable]
public class FactionClass
{
public int FactionIndex;
public RelationTypes RelationType;
public FactionClass(int m_FactionIndex, int m_RelationType)
{
FactionIndex = m_FactionIndex;
RelationType = (RelationTypes)m_RelationType;
}
}
}