// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-12-01
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
//
//
// ***********************************************************************
using System.Collections;
using System.Collections.Generic;
using PureMVC.Interfaces;
using UnityEngine;
namespace G
{
///
/// 任务事件
///
public class MissionEventCommand : F.GameCommand
{
public override void Execute(INotification notification)
{
}
static readonly MissionEventCommand _Default = new MissionEventCommand();
public static MissionEventCommand CreateCommand()
{
return _Default;
}
}
}