You've already forked HackerSM64
mirror of
https://github.com/HackerN64/HackerSM64.git
synced 2026-01-21 10:35:32 -08:00
* Move level script to bank 0x1A * Decouple vanilla objects in a separate bank * Rollback group level scripts move, fixed nits * Move actors_vanilla to actors/vanilla_actors * Make EU translation segment last, remove vanilla objects segments copypaste * Added LOAD_VANILLA_OBJECTS segment id stub
17 lines
397 B
C
17 lines
397 B
C
#ifndef JRB_HEADER_H
|
|
#define JRB_HEADER_H
|
|
|
|
#include "types.h"
|
|
#include "game/moving_texture.h"
|
|
|
|
extern const struct MovtexQuadCollection jrb_movtex_water[];
|
|
extern const struct MovtexQuadCollection jrb_movtex_initial_mist[];
|
|
extern const struct MovtexQuadCollection jrb_movtex_sunken_ship_water[];
|
|
|
|
// script
|
|
extern const LevelScript level_jrb_entry[];
|
|
|
|
#include "levels/jrb/header.inc.h"
|
|
|
|
#endif
|