Tactics: Western Philosophers Vs. Musicians  0.12
A turn-based tactical game combining rules and gameplay elements inspired by Final Fantasy Tactics and the Mayfair Exponential Game System. Unlike most games of this type, motion is in full, grid-less 3D.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Tactics3DControlsScreen.h
Go to the documentation of this file.
1 // Copyright (C) 2013-2014 Dylan Blair
3 //
4 // email: dblair@alumni.cs.utexas.edu
5 //
6 // This file is part of Tactics3D.
7 //
8 // Tactics3D is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // Tactics3D is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 
23 #ifndef TACTICS3DCONTROLS_SCREEN_H
24 #define TACTICS3DCONTROLS_SCREEN_H
25 
26 #include "../Libs/Graphics_LIB/GUIScreen.h"
27 
28 namespace Tactics3D {
29  class App;
30 
33  protected:
34  virtual void setupEventHandlers();
35 
36  bool handleExitButton(const CEGUI::EventArgs& e);
37  public:
38  ControlsScreen(App* app_);
39 
40  virtual void unload();
41 
42  virtual ~ControlsScreen() {}
43  };
44 }
45 
46 #endif //TACTICS3DCONTROLS_SCREEN_H
virtual ~ControlsScreen()
Definition: Tactics3DControlsScreen.h:42
Definition: Tactics3DControlsScreen.h:32
ControlsScreen(App *app_)
Definition: Tactics3DControlsScreen.cpp:8
bool handleExitButton(const CEGUI::EventArgs &e)
Definition: Tactics3DControlsScreen.cpp:33
virtual void unload()
Definition: Tactics3DControlsScreen.cpp:22
Definition: GUIScreen.h:63
virtual void setupEventHandlers()
Definition: Tactics3DControlsScreen.cpp:10
Definition: Tactics3DApp.h:90