isle-portable/LEGO1/mxstring.h
2023-05-05 02:54:17 -07:00

17 lines
225 B
C++

#ifndef MXSTRING_H
#define MXSTRING_H
#include "mxcore.h"
class MxString : public MxCore
{
public:
__declspec(dllexport) virtual ~MxString();
private:
char *m_data;
unsigned short m_length;
};
#endif // MXSTRING_H