37 lines
932 B
C#
37 lines
932 B
C#
// ***********************************************************************
|
|
// Assembly : Game
|
|
// Author : Kimch
|
|
// Created : 2021-08-26
|
|
// Description : 没啥用 Execute没东西
|
|
// Last Modified By :
|
|
// Last Modified On :
|
|
// ***********************************************************************
|
|
// <copyright file= "ToastCommand" company="Kunpo"></copyright>
|
|
// <summary></summary>
|
|
// ***********************************************************************
|
|
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using PureMVC.Interfaces;
|
|
using UnityEngine;
|
|
|
|
namespace G
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class DailyLoginCommand : F.GameCommand
|
|
{
|
|
public override void Execute(INotification notification)
|
|
{
|
|
|
|
}
|
|
|
|
static readonly DailyLoginCommand _Default = new DailyLoginCommand();
|
|
public static DailyLoginCommand CreateCommand()
|
|
{
|
|
return _Default;
|
|
}
|
|
}
|
|
}
|