18 lines
385 B
C#
Raw Normal View History

2025-04-18 22:01:12 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Task : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
EventCenter.GetInstance().AddEventListener("MonsterDead", TaskWaitMonsterDeadDo);
}
public void TaskWaitMonsterDeadDo(object info)
{
Debug.Log("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¼");
}
}