Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/wiimote/src/libraries/core/input/Wiimote_Test.h @ 9706

Last change on this file since 9706 was 9706, checked in by georgr, 11 years ago

Does not compile yet

File size: 608 bytes
Line 
1/*
2 * WiimoteTest.h
3 *
4 *  Created on: Oct 21, 2013
5 *      Author: georgr
6 */
7
8#ifndef WIIMOTETEST_H_
9#define WIIMOTETEST_H_
10
11#include <tools/interfaces/Tickable.h>
12#include "core/CoreIncludes.h"
13#include "core/command/ConsoleCommand.h"
14#include "InputState.h"
15
16namespace orxonox
17{
18        class Wiimote_Test
19                : public WindowEventListener
20                        , public Tickable
21                        , public Singleton<Wiimote_Test>
22        {
23                friend class Singleton<Wiimote_Test>;
24                public:
25                        void tick(float dt);
26                        Wiimote_Test();
27                        virtual ~Wiimote_Test();
28                private:
29                        static Wiimote_Test* singletonPtr_s;
30
31        };
32}
33#endif /* WIIMOTETEST_H_ */
Note: See TracBrowser for help on using the repository browser.