A basic point consisting of two Integers - X and Y
Usage:
- Initialize using IntPoint.get()
var point = IntPoint.get(0, 0);
- Or with an array
var point:IntPoint = [0, 1];
- Recycle points when you're done with them:
my_point.put()
A basic point consisting of two Integers - X and Y
Usage:
var point = IntPoint.get(0, 0);
var point:IntPoint = [0, 1];
my_point.put()