CommonLibVR
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 private:
20 };
21
23 static_assert(sizeof(GPointF) == 0x8);
24
26 static_assert(sizeof(GPointD) == 0x10);
27}
#define KEEP_FOR_RE()
Definition PCH.h:517
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:22
GPoint< double > GPointD
Definition GPoint.h:25