mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2024-12-22 06:29:55 +08:00
57dea47acc
* Create pools.hpp Handles variable encryption for memory pools * Add missing include to classes.cpp * Create fwBasePool.hpp * I might do it right one day * Add missing pragma directive peabrain moment --------- Co-authored-by: Ryan <80224521+Rxann@users.noreply.github.com>
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);
|