Files
Continentis/Assets/Scripts/MainGame/Character/CombatNPC.cs

18 lines
335 B
C#
Raw Normal View History

2025-10-23 00:49:44 -04:00
using SLSFramework.UModAssistance;
2025-10-03 00:02:43 -04:00
using UnityEngine;
namespace Continentis.MainGame.Character
{
public partial class CombatNPC : CharacterBase
{
2025-11-15 12:17:34 -05:00
public CombatNPC(CharacterData data, Fraction fraction) : base(data, fraction)
{
}
2025-10-03 00:02:43 -04:00
}
public partial class CombatNPC
{
2025-11-15 12:17:34 -05:00
2025-10-03 00:02:43 -04:00
}
}