CommonLibSSE NG
Loading...
Searching...
No Matches
GPoint.h
Go to the documentation of this file.
1#pragma once
2
3namespace RE
4{
5 template <class T>
6 class GPoint
7 {
8 public:
9 enum class BoundsType
10 {
11 kMin,
12 kMax
13 };
14
15 // members
16 T x; // 00
17 T y; // ??
18 };
19
21 static_assert(sizeof(GPointF) == 0x8);
22
24 static_assert(sizeof(GPointD) == 0x10);
25}
Definition GPoint.h:7
T x
Definition GPoint.h:16
T y
Definition GPoint.h:17
BoundsType
Definition GPoint.h:10
Definition AbsorbEffect.h:6
GPoint< float > GPointF
Definition GPoint.h:20
GPoint< double > GPointD
Definition GPoint.h:23