16 lines
294 B
C++
16 lines
294 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuMemory.hpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include "AuMemory.hpp"
|
|
|
|
namespace Aurora::Memory
|
|
{
|
|
extern AuUInt gBytesCounterAllocated;
|
|
extern AuUInt gBytesCounterPeak;
|
|
} |