Add support for PixelFormat (RGBA, ARGB) in Image, add more CFFI methods

This commit is contained in:
Joshua Granick
2015-04-14 13:49:58 -07:00
parent a6cb988d72
commit 560a78db62
14 changed files with 574 additions and 102 deletions

View File

@@ -0,0 +1,29 @@
#ifndef LIME_MATH_VECTOR2_H
#define LIME_MATH_VECTOR2_H
#include <hx/CFFI.h>
namespace lime {
class Vector2 {
public:
Vector2 ();
Vector2 (value vec);
double x;
double y;
};
}
#endif