godot/drivers/pvr/Point2.h
2015-04-06 21:48:20 -03:00

18 lines
167 B
C++

#pragma once
namespace Javelin {
template<typename T>
class Point2 {
public:
T x;
T y;
Point2(int a, int b)
: x(a)
, y(b) {
}
};
}