NouVeL/ADVect/ext/bgfx/bimg/3rdparty/pvrtc/Point2.h
2022-08-18 12:17:43 -04:00

17 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) {
}
};
}