RDR-Classes/rage/pools.hpp
tyackman 57dea47acc
fwBasePool and encryption (#10)
* 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>
2024-06-13 17:05:36 -04:00

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);