2017-10-29 10:28:14 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2015 Dimok
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __GUI_H
|
|
|
|
#define __GUI_H
|
|
|
|
|
|
|
|
#include "FreeTypeGX.h"
|
|
|
|
#include "GameBgImage.h"
|
2017-10-31 17:18:42 +01:00
|
|
|
#include "GridBackground.h"
|
2017-10-29 10:28:14 +01:00
|
|
|
#include "GuiButton.h"
|
|
|
|
#include "GuiCheckBox.h"
|
|
|
|
#include "GuiController.h"
|
|
|
|
#include "GuiDragListener.h"
|
|
|
|
#include "GuiElement.h"
|
|
|
|
#include "GuiFrame.h"
|
|
|
|
#include "GuiImage.h"
|
|
|
|
#include "GuiImageAsync.h"
|
|
|
|
#include "GuiImageData.h"
|
|
|
|
#include "GuiParticleImage.h"
|
|
|
|
#include "GuiSelectBox.h"
|
|
|
|
#include "GuiSound.h"
|
|
|
|
#include "GuiSwitch.h"
|
|
|
|
#include "GuiText.h"
|
|
|
|
#include "GuiToggle.h"
|
|
|
|
#include "GuiTrigger.h"
|
|
|
|
#include "GuiScrollbar.h"
|
|
|
|
#include "VPadController.h"
|
|
|
|
#include "WPadController.h"
|
|
|
|
|
|
|
|
#endif
|