mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
Add project files.
This commit is contained in:
29
Project Reboot 3.0/Class.h
Normal file
29
Project Reboot 3.0/Class.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#pragma once
|
||||
|
||||
#include "Object.h"
|
||||
|
||||
#include "addresses.h"
|
||||
|
||||
struct UField : UObject
|
||||
{
|
||||
UField* Next;
|
||||
// void* pad; void* pad2;
|
||||
};
|
||||
|
||||
class UStruct : public UField
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
class UClass : public UStruct
|
||||
{
|
||||
public:
|
||||
UObject* CreateDefaultObject();
|
||||
int GetPropertiesSize();
|
||||
};
|
||||
|
||||
class UFunction : public UStruct
|
||||
{
|
||||
public:
|
||||
void* GetFunc() { return *(void**)(__int64(this) + Offsets::Func); }
|
||||
};
|
||||
Reference in New Issue
Block a user