isle-portable/LEGO1/mxbitmap.h

14 lines
287 B
C
Raw Normal View History

2023-04-27 22:19:39 -04:00
#ifndef MXBITMAP_H
#define MXBITMAP_H
class MxBitmap
{
public:
__declspec(dllexport) MxBitmap();
__declspec(dllexport) virtual ~MxBitmap();
__declspec(dllexport) virtual MxPalette *CreatePalette();
__declspec(dllexport) virtual long Read(const char *);
2023-04-27 22:19:39 -04:00
};
#endif // MXBITMAP_H