1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-25 09:44:02 +00:00

Add an include guard on the slider header.

This commit is contained in:
C.W. Betts 2014-06-27 12:03:14 -06:00
parent 785e44eb47
commit 937af3a56d

View file

@ -18,6 +18,10 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#ifndef __BBGE_SLIDER__
#define __BBGE_SLIDER__
#include "Quad.h" #include "Quad.h"
class Slider : public RenderObject class Slider : public RenderObject
@ -54,3 +58,4 @@ protected:
void onUpdate(float dt); void onUpdate(float dt);
}; };
#endif