Cary Sandvig 25 年之前
父节点
当前提交
fb77b2f1f6
共有 2 个文件被更改,包括 30 次插入0 次删除
  1. 10 0
      panda/src/gui/guiRegion.I
  2. 20 0
      panda/src/gui/guiRegion.h

+ 10 - 0
panda/src/gui/guiRegion.I

@@ -0,0 +1,10 @@
+// Filename: guiRegion.I
+// Created by:  cary (26Oct00)
+// 
+////////////////////////////////////////////////////////////////////
+
+INLINE GiuRegion::GuiRegion(void) {
+}
+
+INLINE GiuRegion::GuiRegion(float, float, float, float) {
+}

+ 20 - 0
panda/src/gui/guiRegion.h

@@ -0,0 +1,20 @@
+// Filename: guiRegion.h
+// Created by:  cary (26Oct00)
+// 
+////////////////////////////////////////////////////////////////////
+
+#ifndef __GUIREGION_H__
+#define __GUIREGION_H__
+
+// container for active regions of a GUI
+
+class GuiRegion {
+private:
+  float _left, _right, _bottom, _top;
+public:
+  INLINE GuiRegion(float, float, float, float);
+};
+
+#include "guiRegion.I"
+
+#endif /* __GUIREGION_H__ */