29 lines
232 B
C++
29 lines
232 B
C++
#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 |