shaoxiadiablo/Assets/AGame/Scripts/Command/MissionEventCommand.cs
2025-05-18 01:04:31 +08:00

37 lines
931 B
C#

// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2021-12-01
// Description :
// 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;
}
}
}