Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/src/game/mario_actions_moving.h
7858 views
1
#ifndef MARIO_ACTIONS_MOVING
2
#define MARIO_ACTIONS_MOVING
3
4
#include <PR/ultratypes.h>
5
6
#include "types.h"
7
8
void play_step_sound(struct MarioState *m, s16 frame1, s16 frame2);
9
s32 mario_execute_moving_action(struct MarioState *m);
10
11
#endif // MARIO_ACTIONS_MOVING
12
13