using System.Collections; using System.Collections.Generic; using UnityEngine; using SiegeSong; namespace SiegeSong { public class FactionManager : MonoBehaviour { void Start() { } void Update() { } public FactionRelationship GetActorFactionRelationship(Statistics actor) { return FactionRelationship.Peers; } } }