Files
lime/project/include/utils/String.h
Joshua Granick 742406c0cc More progress
2018-06-09 08:27:47 -07:00

23 lines
193 B
C++

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