mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
reorganized repo, implemented mxcore
This commit is contained in:
17
LEGO1/mxstring.h
Normal file
17
LEGO1/mxstring.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
Reference in New Issue
Block a user