Core/Housing: stage 37 declare tutorial start packet

This commit is contained in:
Gexo91
2026-09-12 18:36:26 +03:00
parent 22df66db67
commit 9bd4bb0088
@@ -0,0 +1,24 @@
/*
* This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
*/
#ifndef TRINITYCORE_HOUSING_TUTORIAL_PACKETS_H
#define TRINITYCORE_HOUSING_TUTORIAL_PACKETS_H
#include "Packet.h"
namespace WorldPackets::Housing
{
// Retail Start Tutorial request carries no payload. Keep the reader empty so
// WorldSession tail logging still exposes any future 12.1 wire change.
class HousingSvcsStartTutorial final : public ClientPacket
{
public:
explicit HousingSvcsStartTutorial(WorldPacket&& packet)
: ClientPacket(CMSG_HOUSING_SVCS_START_TUTORIAL, std::move(packet)) { }
void Read() override { }
};
}
#endif // TRINITYCORE_HOUSING_TUTORIAL_PACKETS_H