isle/LEGO1/mxbitmap.h
itsmattkc 279d626279 import all functions from lego1 exports
This declares a bunch of classes and functions for us, as well as fixes some declarations that were slightly incorrect (e.g. missing "virtual", etc)
2023-06-11 18:03:54 -07:00

13 lines
287 B
C++

#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 *);
};
#endif // MXBITMAP_H