22 lines
402 B
C#
22 lines
402 B
C#
using System;
|
|
using Server;
|
|
using Server.Prompts;
|
|
|
|
namespace Server.Multis
|
|
{
|
|
public class RenameBoatPrompt : Prompt
|
|
{
|
|
public override int MessageCliloc { get { return 502580; } }
|
|
private BaseBoat m_Boat;
|
|
|
|
public RenameBoatPrompt( BaseBoat boat )
|
|
{
|
|
m_Boat = boat;
|
|
}
|
|
|
|
public override void OnResponse( Mobile from, string text )
|
|
{
|
|
m_Boat.EndRename( from, text );
|
|
}
|
|
}
|
|
} |