More progress on bindings

This commit is contained in:
Joshua Granick
2018-05-25 15:44:09 -07:00
parent 4d2e8febe3
commit 5dc5f47dd4
22 changed files with 2138 additions and 58 deletions

View File

@@ -11,7 +11,7 @@ namespace lime {
struct HL_Rectangle {
hl_type* type;
hl_type* t;
double height;
double width;
double x;

View File

@@ -2,12 +2,23 @@
#define LIME_MATH_VECTOR2_H
#include <hl.h>
#include <hx/CFFI.h>
namespace lime {
struct HL_Vector2 {
hl_type* t;
double length;
double x;
double y;
};
class Vector2 {