Files
U10-MobileGame/Assets/Scripts/EnemyController.cs
Pasha Bibko 0dce94924c Added basic enemy
Does not attack the player currently
2025-11-18 15:52:13 +00:00

10 lines
179 B
C#

using UnityEngine;
public class EnemyController : OrbitalPositionBehaviour
{
public override void OnStart()
{
m_OrbitalPosition.m_DeletedAtCentre = true;
}
}