mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 00:06:44 -04:00
new file
This commit is contained in:
parent
df823a07ac
commit
fb77b2f1f6
10
panda/src/gui/guiRegion.I
Normal file
10
panda/src/gui/guiRegion.I
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
// Filename: guiRegion.I
|
||||||
|
// Created by: cary (26Oct00)
|
||||||
|
//
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
INLINE GiuRegion::GuiRegion(void) {
|
||||||
|
}
|
||||||
|
|
||||||
|
INLINE GiuRegion::GuiRegion(float, float, float, float) {
|
||||||
|
}
|
20
panda/src/gui/guiRegion.h
Normal file
20
panda/src/gui/guiRegion.h
Normal file
@ -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__ */
|
Loading…
x
Reference in New Issue
Block a user