mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2024-12-22 14:37:30 +08:00
12 lines
234 B
C++
12 lines
234 B
C++
|
#pragma once
|
||
|
#include <cstdint>
|
||
|
|
||
|
class PoolEncryption
|
||
|
{
|
||
|
public:
|
||
|
bool m_IsSet; //0x0000
|
||
|
uint64_t m_First; //0x0008
|
||
|
uint64_t m_Second; //0x0010
|
||
|
}; //Size: 0x0018
|
||
|
static_assert(sizeof(PoolEncryption) == 0x18);
|