mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-26 17:51: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 {
|
class MeshImpl : public Mesh {
|
||||||
public:
|
public:
|
||||||
MeshImpl() : m_data(0) {}
|
MeshImpl() : m_data(0) {}
|
||||||
~MeshImpl();
|
~MeshImpl()
|
||||||
|
{
|
||||||
|
if (m_data) {
|
||||||
|
delete m_data;
|
||||||
|
m_data = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
virtual void* ImplementationDataPtr();
|
virtual void* ImplementationDataPtr();
|
||||||
|
|
||||||
|
|||||||
@ -16,6 +16,9 @@ MeshImpl::~MeshImpl()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OFFSET: LEGO1 0x100a3d80 TEMPLATE
|
||||||
|
// TglImpl::MeshImpl::`scalar deleting destructor'
|
||||||
|
|
||||||
// OFFSET: LEGO1 0x100a3ed0
|
// OFFSET: LEGO1 0x100a3ed0
|
||||||
void* MeshImpl::ImplementationDataPtr()
|
void* MeshImpl::ImplementationDataPtr()
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user