mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
Add GetDeviceModeFinder to WndProc (#102)
This commit is contained in:

committed by
GitHub

parent
b59d8ef5cf
commit
d41b7f2ca4
@@ -0,0 +1,25 @@
|
||||
#ifndef MXDIRECT3D_H
|
||||
#define MXDIRECT3D_H
|
||||
|
||||
#include "mxdirectdraw.h"
|
||||
#include "decomp.h"
|
||||
|
||||
#include <d3d.h>
|
||||
|
||||
class MxDeviceModeFinder;
|
||||
|
||||
// SIZE 0x894
|
||||
class MxDirect3D : public MxDirectDraw
|
||||
{
|
||||
public:
|
||||
inline MxDeviceModeFinder *GetDeviceModeFinder() { return this->m_pDeviceModeFinder; };
|
||||
|
||||
private:
|
||||
MxDeviceModeFinder *m_pDeviceModeFinder;
|
||||
IDirect3D *m_pDirect3d;
|
||||
IDirect3DDevice *m_pDirect3dDevice;
|
||||
undefined4 m_unk88c;
|
||||
undefined4 m_unk890;
|
||||
};
|
||||
|
||||
#endif // MXDIRECT3D_H
|
Reference in New Issue
Block a user