Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/hoverHS15/src/modules/hover/Hover.h @ 10658

Last change on this file since 10658 was 10658, checked in by meierman, 9 years ago

new basic files added to Hover

File size: 2.0 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program 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 Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Florian Zinggeler
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30    @file Hover.h
31    @brief Gametype.
32    @ingroup Hover
33*/
34
35#ifndef _Hover_H__
36#define _Hover_H__
37
38#include "Hover/HoverPrereqs.h"
39
40#include "HoverCenterPoint.h" // Necessary for WeakPointer??
41//#include "HoverShip.h"        DO NOT include in Header. Will cause forward declaration issues
42
43//#include "HoverHUDinfo.h"
44
45
46#include "core/EventIncludes.h"
47#include "core/command/Executor.h"
48#include "core/config/ConfigValueIncludes.h"
49
50#include "gamestates/GSLevel.h"
51#include "chat/ChatManager.h"
52#include <vector>
53
54// ! HACK
55#include "infos/PlayerInfo.h"
56
57#include "core/command/ConsoleCommand.h"
58#include "worldentities/BigExplosion.h"
59
60#include "gametypes/Deathmatch.h"
61#include "tools/Timer.h"
62
63namespace orxonox
64{
65
66    class Hover : public GameType
67    {
68       public:
69            Hover(Context* context);
70
71            virtual void start();
72            virtual void end();
73
74            virtual void tick(float dt);
75
76            void setCenterpoint(HoverCenterPoint* center)
77                       { this->center_ = center; }
78
79
80    };
81}
82
83#endif /* _Hover_H__ */
Note: See TracBrowser for help on using the repository browser.