idle-survivors/Assets/Scripts/Enemy.cs

11 lines
282 B
C#
Raw Permalink Normal View History

using UnityEngine;
namespace DefaultNamespace
{
// TODO (Michael): Empty behavior until we decide more on how enemies should be structured. Mainly being used for
// other systems to have something to reference.
public class Enemy : MonoBehaviour
{
}
}