8 lines
177 B
C#
8 lines
177 B
C#
namespace Server.Commands
|
|
{
|
|
public abstract class CAGNode
|
|
{
|
|
public abstract string Title { get; }
|
|
public abstract void OnClick(Mobile from, int page);
|
|
}
|
|
}
|