mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
17 lines
167 B
C++
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) {
|
|
}
|
|
};
|
|
|
|
}
|