Files
Fishing2/Assets/Scripts/Fishing/New/Tasks/EnterMapRoomTask.cs
2025-05-10 12:49:47 +08:00

12 lines
170 B
C#

using NBC;
namespace NBF
{
public class EnterMapRoomTask : NTask
{
protected override void OnStart()
{
Finish();
}
}
}