13 lines
278 B
C#
13 lines
278 B
C#
using Server.Network;
|
|
|
|
namespace Server.Menus
|
|
{
|
|
public interface IMenu
|
|
{
|
|
int Serial { get; }
|
|
int EntryLength { get; }
|
|
void SendTo(NetState state);
|
|
void OnCancel(NetState state);
|
|
void OnResponse(NetState state, int index);
|
|
}
|
|
}
|