mirror of
https://github.com/zeldaret/ph
synced 2026-09-03 01:54:10 -04:00
Add SysObject class
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
|
||||
class SysObject {
|
||||
public:
|
||||
static void* operator new(unsigned long length, u32 *id, u32 idLength);
|
||||
};
|
||||
@@ -0,0 +1,12 @@
|
||||
#ifndef PH_TYPES_H
|
||||
#define PH_TYPES_H
|
||||
|
||||
typedef unsigned int u32;
|
||||
typedef unsigned short u16;
|
||||
typedef unsigned char u8;
|
||||
|
||||
typedef int s32;
|
||||
typedef short s16;
|
||||
typedef char s8;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user