mirror of
https://github.com/jie65535/GrasscutterCommandGenerator.git
synced 2025-06-08 23:19:14 +08:00
12 lines
210 B
C#
12 lines
210 B
C#
using System;
|
|
|
|
using GrasscutterTools.Events;
|
|
|
|
namespace GrasscutterTools.Interfaces
|
|
{
|
|
public interface IPageCommand
|
|
{
|
|
event EventHandler<CommandGeneratedEventArgs> CommandGenerated;
|
|
}
|
|
}
|