mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
19 lines
518 B
C#
19 lines
518 B
C#
using System;
|
|
using ACE.Server.Network.Structure;
|
|
|
|
namespace ACE.Server.Network.GameEvent.Events
|
|
{
|
|
/// <summary>
|
|
/// House panel information for owners
|
|
/// </summary>
|
|
public class GameEventHouseData : GameEventMessage
|
|
{
|
|
public GameEventHouseData(Session session, HouseData data)
|
|
: base(GameEventType.HouseData, GameMessageGroup.UIQueue, session)
|
|
{
|
|
//Console.WriteLine("Sending 0x225 - GameEventHouseData");
|
|
|
|
Writer.Write(data);
|
|
}
|
|
}
|
|
}
|