00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 #ifndef SELECTIONBOX_H_
00009 #define SELECTIONBOX_H_
00010 
00011 
00012 #include <OgreManualObject.h>
00013 
00014 
00015 namespace OgreGFX {
00016         class SelectionBox  : public  Ogre::ManualObject        {
00017         public :
00018                 void convertAndReadyCorners(float left, float top, float right, float bottom);
00019                 void setCorners(const Ogre::Vector2& topLeft, const Ogre::Vector2& bottomRight);
00020 
00021                 virtual ~SelectionBox(void);
00022                 SelectionBox(const Ogre::String& name);
00023 
00024 
00025 
00026         };
00027 }
00028 
00029 #endif