mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
26 lines
833 B
C
26 lines
833 B
C
#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;
|
|
};
|