We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffd27c1 commit dfedd21Copy full SHA for dfedd21
Spore ModAPI/SourceCode/Editors/Editor.cpp
@@ -94,5 +94,16 @@ namespace Editors
94
}
95
96
97
+
98
+ cEditorResource::cEditorResource()
99
+ : mBlocks()
100
+ , mProperties {}
101
+ , padding_5C {}
102
+ {
103
+ }
104
105
+ cEditorResource::~cEditorResource()
106
+ {}
107
108
109
#endif
Spore ModAPI/Spore/Editors/cEditorResource.h
@@ -61,6 +61,7 @@ namespace Editors
61
class cEditorResource
62
: public Resource::ResourceObject
63
{
64
+ public:
65
struct Properties
66
67
/* 00h */ uint32_t mModelType;
@@ -79,6 +80,9 @@ namespace Editors
79
80
81
static const uint32_t TYPE = 0x3C609F8;
82
83
+ cEditorResource();
84
+ ~cEditorResource();
85
86
public:
87
/* 18h */ Properties mProperties;
88
/* 5Ch */ char padding_5C[0x98 - 0x5C];
0 commit comments