Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
23 lines
371 B
C++
23 lines
371 B
C++
#ifndef _HEAPINSPECTORSERVER_HEAPINFO_H_
|
|
#define _HEAPINSPECTORSERVER_HEAPINFO_H_
|
|
|
|
#include "HeapInspectorServerTypes.h"
|
|
#include <string>
|
|
|
|
BEGIN_NAMESPACE(HeapInspectorServer)
|
|
|
|
struct Range
|
|
{
|
|
uint32 m_Min;
|
|
uint32 m_Max;
|
|
};
|
|
|
|
struct HeapInfo
|
|
{
|
|
std::string m_Description;
|
|
Range m_Range;
|
|
};
|
|
|
|
END_NAMESPACE(HeapInspectorServer)
|
|
|
|
#endif // _HEAPINSPECTORSERVER_HEAPINFO_H_
|