Mangle ActorRupee actor type and resource

This commit is contained in:
Aetias
2024-04-07 15:04:51 +02:00
parent c628010c04
commit 392ccb357e
8 changed files with 70 additions and 22 deletions
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include "global.h"
#include "types.h"
typedef void (*ResourceCleanupFunc)(void *object);
struct Resource {
/* 0 */ Resource *next;
/* 4 */ ResourceCleanupFunc cleanup;
/* 8 */ void *object;
/* c */
};