LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/Threat.cs
2023-12-22 19:30:32 -05:00

26 lines
382 B
C#

using System;
using UnityEngine;
[Serializable]
public class Threat
{
public IVisibleThreat threatScript;
public Vector3 lastSeenPosition;
public int threatLevel;
public ThreatType type;
public int focusLevel;
public float timeLastSeen;
public float distanceToThreat;
public float distanceMovedTowardsBaboon;
public int interestLevel;
public bool hasAttacked;
}