diff options
author | Max <mparisi@stevens.edu> | 2020-11-06 20:28:24 -0500 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-11-06 20:28:24 -0500 |
commit | 2b3b7eb1888430659fd6839e220542f19b22ae3c (patch) | |
tree | 59e8098b050cf1c23d8249cb87d7ca14be3a51d9 /include | |
parent | aef4ef49d3bca9b729c9228012419533adefef4c (diff) |
C++ refactoring, adding nonmatching #ifdefs for ctors/dtor using operator delete for now
Diffstat (limited to 'include')
-rw-r--r-- | include/GShierMemObject.h | 2 | ||||
-rw-r--r-- | include/code_801DD5C8.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/GShierMemObject.h b/include/GShierMemObject.h index 60af7b7..fd5846d 100644 --- a/include/GShierMemObject.h +++ b/include/GShierMemObject.h @@ -7,7 +7,7 @@ extern MEMHeapHandle lbl_8063E8F8;
// Note: This is the root base class for various classes such as GScamera,
-// GSlight, GSmodel, etc. These classes are all new/deleted using an alternative set of
+// GSlight, GSmodel, etc. Instances of these classes are all new/deleted using an alternative set of
// routines than the global new and delete, which we infer is defined inline here.
// TODO: abstract class?
diff --git a/include/code_801DD5C8.h b/include/code_801DD5C8.h index 1b528ae..dbe31c3 100644 --- a/include/code_801DD5C8.h +++ b/include/code_801DD5C8.h @@ -36,7 +36,7 @@ struct gUnkClass7 : public GShierMemObject float unkC;
gUnkClass7() : unk0(NULL), unk4(0), unk6(0xC), unk8(1.0f), unkC(0.0f) { }
-
+ ~gUnkClass7() { }
};
void func_801DD5C8(gUnkClass7* p1, float p2);
|