Organize source code structure

This commit is contained in:
Aetias
2024-03-02 08:29:32 +01:00
parent 36223d28a1
commit c661e62d40
9 changed files with 13 additions and 21 deletions
+9
View File
@@ -0,0 +1,9 @@
#pragma once
#include "types.h"
class SysObject {
public:
static void* operator new(unsigned long length, u32 *id, u32 idLength);
static void operator delete(void *ptr);
};