mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
10 lines
168 B
C++
10 lines
168 B
C++
#include "ZoneMemory.h"
|
|
|
|
ZoneMemory::ZoneMemory()
|
|
= default;
|
|
|
|
void ZoneMemory::AddBlock(std::unique_ptr<XBlock> block)
|
|
{
|
|
m_blocks.emplace_back(std::move(block));
|
|
}
|