mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
17 lines
401 B
C
17 lines
401 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
struct LockData
|
||
|
|
{
|
||
|
|
LockData() = default;
|
||
|
|
~LockData() = default;
|
||
|
|
|
||
|
|
bool operator==(const LockData& acRhs) const noexcept;
|
||
|
|
bool operator!=(const LockData& acRhs) const noexcept;
|
||
|
|
|
||
|
|
void Serialize(TiltedPhoques::Buffer::Writer& aWriter) const noexcept;
|
||
|
|
void Deserialize(TiltedPhoques::Buffer::Reader& aReader) noexcept;
|
||
|
|
|
||
|
|
bool IsLocked{};
|
||
|
|
uint8_t LockLevel{};
|
||
|
|
};
|