1
0
Fork 0
mirror of https://github.com/isledecomp/isle.git synced 2025-08-28 22:11:34 -04:00
isle/LEGO1/mxbitmap.h

14 lines
287 B
C
Raw Normal View History

2023-04-27 19:19:39 -07: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 19:19:39 -07:00
};
#endif // MXBITMAP_H