mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
11 lines
131 B
C++
11 lines
131 B
C++
#pragma once
|
|
|
|
namespace RBX { namespace Test {
|
|
class Memory
|
|
{
|
|
long initialBytes;
|
|
public:
|
|
Memory();
|
|
long GetBytes();
|
|
};
|
|
}} |