mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-29 03:01:15 +00:00
17 lines
265 B
C++
17 lines
265 B
C++
#ifndef MXIMAGEPTR_H
|
|
#define MXIMAGEPTR_H
|
|
|
|
#include "mximage.h"
|
|
|
|
class MxImagePtr {
|
|
MxImagePtr();
|
|
~MxImagePtr();
|
|
MxResult Read(LegoStream* p_stream, MxU32 p_square);
|
|
MxResult Write(LegoStream* p_stream);
|
|
|
|
private:
|
|
MxImage* m_pImage;
|
|
};
|
|
|
|
#endif // MXIMAGEPTR_H
|