Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/src/engine/level_script.h
7857 views
1
#ifndef LEVEL_SCRIPT_H
2
#define LEVEL_SCRIPT_H
3
4
#include <PR/ultratypes.h>
5
6
struct LevelCommand;
7
8
extern u8 level_script_entry[];
9
10
struct LevelCommand *level_script_execute(struct LevelCommand *cmd);
11
12
#endif // LEVEL_SCRIPT_H
13
14