Cute_demon_attacks/meng_yao/Assets/script/A_Fight/enemy.cs

20 lines
369 B
C#
Raw Normal View History

2024-12-08 02:52:59 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class enemy:Role
{
// Start is called before the first frame update
public override void Start()
{
base.Start();
Navigation.MoveToNextWaypoint(this.gameObject);
}
// Update is called once per frame
void Update()
{
}
}