AuroraRuntime/Include/Aurora/HWInfo/RamStat.hpp

17 lines
274 B
C++
Raw Normal View History

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: RamStat.hpp
Date: 2021-10-24
Author: Reece
***/
#pragma once
namespace Aurora::HWInfo
{
struct RamStat
{
AuUInt64 used;
AuUInt64 available;
};
}