mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
14 lines
153 B
C++
14 lines
153 B
C++
#pragma once
|
|
|
|
#include "Types.h"
|
|
|
|
namespace Iop
|
|
{
|
|
struct MEMORYBLOCK
|
|
{
|
|
uint32 isValid;
|
|
uint32 nextBlockId;
|
|
uint32 address;
|
|
uint32 size;
|
|
};
|
|
};
|