diff --git a/panda/src/gui/guiRegion.I b/panda/src/gui/guiRegion.I new file mode 100644 index 0000000000..77871c7e2c --- /dev/null +++ b/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) { +} diff --git a/panda/src/gui/guiRegion.h b/panda/src/gui/guiRegion.h new file mode 100644 index 0000000000..31b7fc5043 --- /dev/null +++ b/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__ */