Files
lime/project/include/utils/String.h
2018-06-11 13:10:17 -07:00

23 lines
202 B
C++

#ifndef LIME_UTILS_STRING_H
#define LIME_UTILS_STRING_H
#include <system/CFFI.h>
namespace lime {
struct HL_String {
hl_type* t;
unsigned char* bytes;
int length;
};
}
#endif