mirror of
https://github.com/n64decomp/sm64
synced 2026-04-27 17:43:40 +00:00
13 lines
225 B
C
13 lines
225 B
C
#ifndef LEVEL_SCRIPT_H
|
|
#define LEVEL_SCRIPT_H
|
|
|
|
#include <PR/ultratypes.h>
|
|
|
|
struct LevelCommand;
|
|
|
|
extern u8 level_script_entry[];
|
|
|
|
struct LevelCommand *level_script_execute(struct LevelCommand *cmd);
|
|
|
|
#endif // LEVEL_SCRIPT_H
|