Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/OrxoKart_HS18/src/modules/orxokart/KartController.cc @ 12147

Last change on this file since 12147 was 12147, checked in by emustafa, 5 years ago

controlls tweaks

File size: 472 bytes
Line 
1#include "KartController.h"
2#include "core/CoreIncludes.h"
3#include "core/XMLPort.h"
4
5
6namespace orxonox
7{
8        RegisterClass(KartController);
9       
10        KartController::KartController(Context* context) : HumanController(context)
11            {
12                RegisterObject(KartController);
13                this->controlPaused_ = false;
14                KartController::localController_s = this;
15            }
16
17        void KartController::yaw(const Vector2& value)
18    {
19        orxout() << "TEST CONTROLlER" << endl;
20    }
21}
22
23
Note: See TracBrowser for help on using the repository browser.