using System.Collections; using System.Collections.Generic; using UnityEngine; using SiegeSong; namespace SiegeSong { public class BehaviorPicker : MonoBehaviour { public ThreatAwareness Awareness; void Start() { } void Update() { if (Awareness.HostilityLevel == AIHostility.Hostile) { } } } }