CommonLibVR
GRect.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
5  template <class T>
6  class GRect
7  {
8  public:
9  // members
10  T left; // 00
11  T top; // ??
12  T right; // ??
13  T bottom; // ??
14  private:
15  KEEP_FOR_RE()
16  };
17 
19  static_assert(sizeof(GRectF) == 0x10);
20 
22  static_assert(sizeof(GRectD) == 0x20);
23 }
#define KEEP_FOR_RE()
Definition: PCH.h:713
Definition: GRect.h:7
T top
Definition: GRect.h:11
T right
Definition: GRect.h:12
T left
Definition: GRect.h:10
T bottom
Definition: GRect.h:13
Definition: AbsorbEffect.h:6