Files
HackerSM64/levels/hmc/header.h
Denis Kopyrin ccb1419adb Split vanillla object from levels allowing pruning vanilla assets on fast64 imports and managing vanilla objects independently of levels (#796)
* 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
2025-01-29 20:58:46 -05:00

19 lines
514 B
C

#ifndef HMC_HEADER_H
#define HMC_HEADER_H
#include "types.h"
#include "game/moving_texture.h"
extern const Texture *const hmc_seg7_painting_textures_07025518[];
extern struct Painting cotmc_painting;
extern const Trajectory hmc_seg7_trajectory_checkerboard_platform[];
extern const struct MovtexQuadCollection hmc_movtex_dorrie_pool_water[];
extern const struct MovtexQuadCollection hmc_movtex_toxic_maze_mist[];
// script
extern const LevelScript level_hmc_entry[];
#include "levels/hmc/header.inc.h"
#endif