mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 23:01:16 +00:00
MxDirect3D Constructor
This commit is contained in:
parent
1d104141b5
commit
5a300e8b89
@ -103,6 +103,7 @@ add_library(lego1 SHARED
|
||||
LEGO1/mxcore.cpp
|
||||
LEGO1/mxcriticalsection.cpp
|
||||
LEGO1/mxdirectdraw.cpp
|
||||
LEGO1/mxdirect3d.cpp
|
||||
LEGO1/mxdiskstreamcontroller.cpp
|
||||
LEGO1/mxdiskstreamprovider.cpp
|
||||
LEGO1/mxdisplaysurface.cpp
|
||||
|
||||
@ -0,0 +1,12 @@
|
||||
#include "mxdirect3d.h"
|
||||
|
||||
DECOMP_SIZE_ASSERT(MxDirect3D, 0x894);
|
||||
|
||||
// OFFSET: LEGO1 0x1009b0a0
|
||||
MxDirect3D::MxDirect3D()
|
||||
{
|
||||
this->m_pDirect3d = NULL;
|
||||
this->m_pDirect3dDevice = NULL;
|
||||
this->m_unk88c = NULL;
|
||||
this->m_pDeviceModeFinder = NULL;
|
||||
}
|
||||
@ -12,6 +12,8 @@ class MxDeviceModeFinder;
|
||||
class MxDirect3D : public MxDirectDraw
|
||||
{
|
||||
public:
|
||||
MxDirect3D();
|
||||
|
||||
inline MxDeviceModeFinder *GetDeviceModeFinder() { return this->m_pDeviceModeFinder; };
|
||||
|
||||
private:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user