F4MP/codigos originales/tiltedcode/Code/encoding/Messages/RequestInventoryChanges.h

27 lines
833 B
C
Raw Normal View History

#pragma once
#include "Message.h"
#include <Structs/Inventory.h>
struct RequestInventoryChanges final : ClientMessage
{
static constexpr ClientOpcode Opcode = kRequestInventoryChanges;
RequestInventoryChanges()
: ClientMessage(Opcode)
{
}
virtual ~RequestInventoryChanges() = default;
void SerializeRaw(TiltedPhoques::Buffer::Writer& aWriter) const noexcept override;
void DeserializeRaw(TiltedPhoques::Buffer::Reader& aReader) noexcept override;
bool operator==(const RequestInventoryChanges& acRhs) const noexcept { return GetOpcode() == acRhs.GetOpcode() && ServerId == acRhs.ServerId && Item == acRhs.Item && Drop == acRhs.Drop && UpdateClients == acRhs.UpdateClients; }
uint32_t ServerId{};
Inventory::Entry Item{};
bool Drop = false;
bool UpdateClients = true;
};