12 lines
264 B
C#
12 lines
264 B
C#
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();
|
|
}
|