33 lines
637 B
C#
33 lines
637 B
C#
using Server.Network;
|
|
|
|
namespace Server.HuePickers
|
|
{
|
|
public class HuePicker
|
|
{
|
|
private static Serial m_NextSerial = 1;
|
|
|
|
public HuePicker(int itemID)
|
|
{
|
|
do
|
|
{
|
|
Serial = m_NextSerial++;
|
|
} while (Serial == 0);
|
|
|
|
ItemID = itemID;
|
|
}
|
|
|
|
public Serial Serial { get; }
|
|
|
|
public int ItemID { get; }
|
|
|
|
public virtual void OnResponse(int hue)
|
|
{
|
|
}
|
|
|
|
public void SendTo(NetState state)
|
|
{
|
|
state.SendDisplayHuePicker(Serial, ItemID);
|
|
state.AddHuePicker(this);
|
|
}
|
|
}
|
|
}
|