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,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public interface IFaction
{
/// <summary>
/// Returns the object's faction index (based on the Faction Data's Faction Name List).
/// </summary>
int GetFaction();
}