pandemonium_engine_minimal/thirdparty/pvrtccompressor/Point2.h

18 lines
167 B
C++
Raw Normal View History

2023-12-14 21:54:22 +01:00
#pragma once
namespace Javelin {
template<typename T>
class Point2 {
public:
T x;
T y;
Point2(int a, int b)
: x(a)
, y(b) {
}
};
}