Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/wiimote/src/libraries/core/input/WiiMote.cc @ 9790

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

debug outputs added

File size: 488 bytes
Line 
1#include "WiiMote.h"
2#include "core/CoreIncludes.h"
3#include "core/command/ConsoleCommand.h"
4#include <wiicpp/wiicpp/wiicpp.h>
5
6namespace orxonox
7{
8
9        const std::string WiiMote::deviceName = "WiiMote";
10        void WiiMote::update(const Clock& time)
11        {
12                orxout(user_warning) << this->inputStates_.size() << std::endl;
13        }
14        void WiiMote::clearBuffers()
15        {
16
17        }
18        void WiiMote::test(int x, int y)
19        {
20
21        }
22        WiiMote::WiiMote(unsigned int id, CWiimote & parent)  : InputDevice(id)
23        {
24                p = &parent;
25        }
26}
Note: See TracBrowser for help on using the repository browser.