improved accuracy of library headers

This commit is contained in:
itsmattkc
2023-04-29 20:39:01 -07:00
parent 4570487067
commit 4b10d951e5
8 changed files with 104 additions and 11 deletions

View File

@@ -1,15 +1,16 @@
#ifndef MXSTRING_H
#define MXSTRING_H
class MxString
#include "mxcore.h"
class MxString : public MxCore
{
public:
__declspec(dllexport) virtual ~MxString();
private:
int m_unk00;
int m_unk04;
int m_unk08;
int m_unk0c;
char *m_data;
unsigned short m_length;
};