// *********************************************************************** // Assembly : Game // Author : Kimch // Created : 2021-08-26 // Description : 没啥用 Execute没东西 // Last Modified By : // Last Modified On : // *********************************************************************** // // // *********************************************************************** using System.Collections; using System.Collections.Generic; using PureMVC.Interfaces; using UnityEngine; namespace G { /// /// /// public class DailyLoginCommand : F.GameCommand { public override void Execute(INotification notification) { } static readonly DailyLoginCommand _Default = new DailyLoginCommand(); public static DailyLoginCommand CreateCommand() { return _Default; } } }