mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
15 lines
253 B
C++
15 lines
253 B
C++
#pragma once
|
|
|
|
#include "Utils/MemoryManager.h"
|
|
|
|
#include <cstdlib>
|
|
|
|
class TestMemoryManager : public MemoryManager
|
|
{
|
|
public:
|
|
[[nodiscard]] size_t GetAllocationCount() const
|
|
{
|
|
return m_allocations.size() + m_destructible.size();
|
|
}
|
|
};
|