GrasscutterCommandGenerator/Source/GrasscutterTools/Interfaces/IPageCommand.cs
筱傑 a055dc5299 Framework changed to WPF
Only the basic window frame is implemented.
Adjusted the structure of resource files.
2022-09-29 21:56:43 +08:00

12 lines
210 B
C#

using System;
using GrasscutterTools.Events;
namespace GrasscutterTools.Interfaces
{
public interface IPageCommand
{
event EventHandler<CommandGeneratedEventArgs> CommandGenerated;
}
}