2025-05-18 01:04:31 +08:00
|
|
|
|
// ***********************************************************************
|
|
|
|
|
// Assembly : Game
|
|
|
|
|
// Author : Kimch
|
|
|
|
|
// Created : 2021-12-01
|
2025-06-23 00:44:29 +08:00
|
|
|
|
// Description : 没啥用 Execute没东西
|
2025-05-18 01:04:31 +08:00
|
|
|
|
// Last Modified By :
|
|
|
|
|
// Last Modified On :
|
|
|
|
|
// ***********************************************************************
|
|
|
|
|
// <copyright file= "MissionEventCommand" company="Kunpo"></copyright>
|
|
|
|
|
// <summary></summary>
|
|
|
|
|
// ***********************************************************************
|
|
|
|
|
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using PureMVC.Interfaces;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace G
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务事件
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MissionEventCommand : F.GameCommand
|
|
|
|
|
{
|
|
|
|
|
public override void Execute(INotification notification)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static readonly MissionEventCommand _Default = new MissionEventCommand();
|
|
|
|
|
public static MissionEventCommand CreateCommand()
|
|
|
|
|
{
|
|
|
|
|
return _Default;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|