blob: 0c436f8ccef5a33a6f390e444d17ff27d5b5f8b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <libultraship.h>
#include <actor_types.h>
/**
* @brief Updates the paddle boat actor.
* Actor used in DK's Jungle Parkway.
* Rotate only the paddle wheel, for position and rotation of the boat it's in vehicle.
*
* @param boat
*/
void update_actor_paddle_boat(struct PaddleWheelBoat* boat) {
boat->wheelRot += 0x38E;
}
|