Rev | Line | |
---|
[12147] | 1 | #include "KartController.h" |
---|
| 2 | #include "core/CoreIncludes.h" |
---|
| 3 | #include "core/XMLPort.h" |
---|
| 4 | |
---|
| 5 | |
---|
| 6 | namespace 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.