mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Enum ToSentence improvements * Network.EnqueueSend improvements * Improve SerializePhysicsData * GameMessage improvements * GameEventMessage updates * more initial sizes * Few more GameMessages * few more
20 lines
549 B
C#
20 lines
549 B
C#
using System;
|
|
|
|
namespace ACE.Server.Network.GameEvent.Events
|
|
{
|
|
/// <summary>
|
|
/// House status?
|
|
/// </summary>
|
|
public class GameEventHouseTransaction : GameEventMessage
|
|
{
|
|
public GameEventHouseTransaction(Session session)
|
|
: base(GameEventType.HouseTransaction, GameMessageGroup.UIQueue, session, 8)
|
|
{
|
|
//Console.WriteLine("Sending 0x259 - GameEventHouseTransaction");
|
|
|
|
var noticeType = 2u; // type of message to display
|
|
|
|
Writer.Write(noticeType);
|
|
}
|
|
}
|
|
}
|