mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
Merge branch 'd3drm' of https://github.com/stravant/isle into d3drm
This commit is contained in:
commit
66faae8228
@ -205,7 +205,13 @@ class LightImpl : public Light {
|
||||
class MeshImpl : public Mesh {
|
||||
public:
|
||||
MeshImpl() : m_data(0) {}
|
||||
~MeshImpl();
|
||||
~MeshImpl()
|
||||
{
|
||||
if (m_data) {
|
||||
delete m_data;
|
||||
m_data = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
virtual void* ImplementationDataPtr();
|
||||
|
||||
|
||||
@ -16,6 +16,9 @@ MeshImpl::~MeshImpl()
|
||||
}
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100a3d80 TEMPLATE
|
||||
// TglImpl::MeshImpl::`scalar deleting destructor'
|
||||
|
||||
// OFFSET: LEGO1 0x100a3ed0
|
||||
void* MeshImpl::ImplementationDataPtr()
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user