mirror of
https://github.com/modernuo/ModernUO
synced 2026-08-11 22:23:06 -04:00
25 lines
455 B
C#
25 lines
455 B
C#
namespace Server.Prompts
|
|
{
|
|
public abstract class Prompt
|
|
{
|
|
private static int m_Serials;
|
|
|
|
protected Prompt()
|
|
{
|
|
do
|
|
{
|
|
Serial = ++m_Serials;
|
|
} while (Serial == 0);
|
|
}
|
|
|
|
public int Serial { get; }
|
|
|
|
public virtual void OnCancel(Mobile from)
|
|
{
|
|
}
|
|
|
|
public virtual void OnResponse(Mobile from, string text)
|
|
{
|
|
}
|
|
}
|
|
}
|