Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 18, 2013, 4:07:28 PM (10 years ago)
Author:
georgr
Message:

debug outputs added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/wiimote/src/libraries/core/input/WiiMote.h

    r9723 r9790  
    11
    22#include "InputDevice.h"
    3 //#include "InputState.h"
    43//#include "InputManager.h"
     4
     5#include <wiicpp/wiicpp/wiicpp.h>
    56
    67
     
    89namespace orxonox
    910{
     11
     12
     13
     14
    1015        class WiiMote : public InputDevice
    1116        {
     17
    1218         public:
    1319                        //! Only resets the members
    14                 WiiMote(unsigned int id);
     20                WiiMote(unsigned int id, CWiimote & parent);
    1521                ~WiiMote() { }
    1622                //! Returns the device class (derived) name as string
     
    2632                 //! List of all input states that receive events from this device
    2733                 std::vector<InputState*> inputStates_;
     34
    2835         private:
    2936                 static const std::string deviceName;
    3037                 void test(int x, int y);
     38                 CWiimote * p;
    3139        };
    3240};
Note: See TracChangeset for help on using the changeset viewer.