mirror of
https://github.com/izzy2lost/Starship.git
synced 2026-07-05 15:19:42 -07:00
Merge branch 'main' of https://github.com/HarbourMasters/Starship
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
name: Linux Compile
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "*" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get install gcc g++ git cmake ninja-build lsb-release libsdl2-dev libpng-dev libsdl2-net-dev libzip-dev zipcmp zipmerge ziptool nlohmann-json3-dev libtinyxml2-dev libspdlog-dev libboost-dev libopengl-dev
|
||||
- name: Install latest SDL
|
||||
run: |
|
||||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
||||
wget https://www.libsdl.org/release/SDL2-2.24.1.tar.gz
|
||||
tar -xzf SDL2-2.24.1.tar.gz
|
||||
cd SDL2-2.24.1
|
||||
./configure
|
||||
make -j 10
|
||||
sudo make install
|
||||
- name: Install latest tinyxml2
|
||||
run: |
|
||||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
||||
wget https://github.com/leethomason/tinyxml2/archive/refs/tags/10.0.0.tar.gz
|
||||
tar -xzf 10.0.0.tar.gz
|
||||
cd tinyxml2-10.0.0
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make
|
||||
sudo make install
|
||||
- name: Build
|
||||
run: |
|
||||
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release
|
||||
cmake --build build-cmake -j
|
||||
- name: Create Package
|
||||
run: |
|
||||
mkdir starship-release
|
||||
mv build-cmake/UltraViewer starship-release/
|
||||
- name: Publish packaged artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: starship-linux-x64
|
||||
path: starship-release
|
||||
@@ -0,0 +1,30 @@
|
||||
name: Macos Compile
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "*" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macOS-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Install dependencies
|
||||
run: brew install sdl2 libpng glew ninja cmake libzip nlohmann-json tinyxml2 spdlog
|
||||
- name: Build
|
||||
run: |
|
||||
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release
|
||||
cmake --build build-cmake -j
|
||||
- name: Create Package
|
||||
run: |
|
||||
mkdir starship-release
|
||||
mv build-cmake/UltraViewer starship-release/
|
||||
- name: Publish packaged artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: starship-mac-x64
|
||||
path: starship-release
|
||||
@@ -0,0 +1,24 @@
|
||||
name: Windows Compile
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "*" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-2022
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Build
|
||||
run: |
|
||||
cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v143 -A x64 -DCMAKE_BUILD_TYPE=Release
|
||||
cmake --build ./build/x64
|
||||
- name: Upload build
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: starship-windows
|
||||
path: ./build/x64/Debug
|
||||
@@ -20,7 +20,6 @@ ctx.c.m2c
|
||||
assets/yaml/us/ast_test.yaml
|
||||
/audio_data
|
||||
src/assets/*
|
||||
include/assets/*
|
||||
/build
|
||||
build-new/
|
||||
tools/mio0
|
||||
|
||||
+9
-5
@@ -530,16 +530,20 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang|AppleClang")
|
||||
endif()
|
||||
|
||||
include(ExternalProject)
|
||||
ExternalProject_Add(Torch
|
||||
PREFIX Torch
|
||||
ExternalProject_Add(torch
|
||||
PREFIX torch
|
||||
SOURCE_DIR ${CMAKE_SOURCE_DIR}/tools/Torch
|
||||
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/Torch
|
||||
)
|
||||
ExternalProject_Get_Property(Torch install_dir)
|
||||
set(TORCH_EXECUTABLE ${install_dir}/src/Torch-build/$<CONFIGURATION>/torch)
|
||||
ExternalProject_Get_Property(torch install_dir)
|
||||
if (MSVC)
|
||||
set(TORCH_EXECUTABLE ${install_dir}/src/torch-build/$<CONFIGURATION>/torch)
|
||||
else()
|
||||
set(TORCH_EXECUTABLE ${install_dir}/src/torch-build/torch)
|
||||
endif()
|
||||
add_custom_target(
|
||||
ExtractAssets
|
||||
DEPENDS Torch
|
||||
DEPENDS torch
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
COMMAND ${TORCH_EXECUTABLE} header -o baserom.us.uncompressed.z64
|
||||
COMMAND ${TORCH_EXECUTABLE} otr baserom.us.uncompressed.z64
|
||||
|
||||
@@ -0,0 +1,355 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_AST_7_TI_1_7000000[] = "__OTR__ast_7_ti_1/D_AST_7_TI_1_7000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7000A80[] = "__OTR__ast_7_ti_1/D_TI1_7000A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B88[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C88[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7000D08[] = "__OTR__ast_7_ti_1/D_TI1_7000D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7001108[] = "__OTR__ast_7_ti_1/D_TI1_7001108";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7001268[] = "__OTR__ast_7_ti_1/D_TI1_7001268";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7002270[] = "__OTR__ast_7_ti_1/D_TI1_7002270";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2330[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2330";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7002490[] = "__OTR__ast_7_ti_1/D_TI1_7002490";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_25A0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_25A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2620[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7002730[] = "__OTR__ast_7_ti_1/D_TI1_7002730";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7002930[] = "__OTR__ast_7_ti_1/D_TI1_7002930";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2AB8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2AB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2AF8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2AF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2B58[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2BD8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2BD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7002C88[] = "__OTR__ast_7_ti_1/D_TI1_7002C88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7003488[] = "__OTR__ast_7_ti_1/D_TI1_7003488";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7003888[] = "__OTR__ast_7_ti_1/D_TI1_7003888";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7003A90[] = "__OTR__ast_7_ti_1/D_TI1_7003A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3B30[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3BE0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7003C50[] = "__OTR__ast_7_ti_1/D_TI1_7003C50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3D10[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3DB0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7003E30[] = "__OTR__ast_7_ti_1/D_TI1_7003E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3EE8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3EE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3F28[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3F28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7003FC0[] = "__OTR__ast_7_ti_1/D_TI1_7003FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4060[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4060";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4100[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4100";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7004170[] = "__OTR__ast_7_ti_1/D_TI1_7004170";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7004370[] = "__OTR__ast_7_ti_1/D_TI1_7004370";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4430[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4430";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_44D0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_44D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7004560[] = "__OTR__ast_7_ti_1/D_TI1_7004560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4658[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4658";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_46B8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_46B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_46E8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_46E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7004780[] = "__OTR__ast_7_ti_1/D_TI1_7004780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4870[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4870";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_48F0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_48F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4960[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4960";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_70049A0[] = "__OTR__ast_7_ti_1/D_TI1_70049A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7004BA0[] = "__OTR__ast_7_ti_1/D_TI1_7004BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4CC8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4CC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4D68[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4D98[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4D98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4DC8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4DC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7004E78[] = "__OTR__ast_7_ti_1/D_TI1_7004E78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7005078[] = "__OTR__ast_7_ti_1/D_TI1_7005078";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7005280[] = "__OTR__ast_7_ti_1/D_TI1_7005280";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_5338[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_5338";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_5378[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_5378";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7005420[] = "__OTR__ast_7_ti_1/D_TI1_7005420";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_5518[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_5518";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_5578[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_5578";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_55A8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_55A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_70067C4[] = "__OTR__ast_7_ti_1/D_TI1_70067C4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1DesertCrawlerSkel[] = "__OTR__ast_7_ti_1/aTi1DesertCrawlerSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7006F74[] = "__OTR__ast_7_ti_1/D_TI1_7006F74";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7007130[] = "__OTR__ast_7_ti_1/D_TI1_7007130";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7007234[] = "__OTR__ast_7_ti_1/D_TI1_7007234";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700733C[] = "__OTR__ast_7_ti_1/D_TI1_700733C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7007350[] = "__OTR__ast_7_ti_1/D_TI1_7007350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7580[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7580";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7770[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7950[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7950";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7980[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7A60[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7007AB0[] = "__OTR__ast_7_ti_1/D_TI1_7007AB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7007EB0[] = "__OTR__ast_7_ti_1/D_TI1_7007EB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7008090[] = "__OTR__ast_7_ti_1/D_TI1_7008090";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7008490[] = "__OTR__ast_7_ti_1/D_TI1_7008490";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7008680[] = "__OTR__ast_7_ti_1/D_TI1_7008680";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7008780[] = "__OTR__ast_7_ti_1/D_TI1_7008780";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7008930[] = "__OTR__ast_7_ti_1/D_TI1_7008930";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8AA0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8AA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8AE0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8AE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8B70[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8B70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8BC0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8BC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8C60[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8C60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7008D10[] = "__OTR__ast_7_ti_1/D_TI1_7008D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7008F10[] = "__OTR__ast_7_ti_1/D_TI1_7008F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7009110[] = "__OTR__ast_7_ti_1/D_TI1_7009110";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7009310[] = "__OTR__ast_7_ti_1/D_TI1_7009310";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7009510[] = "__OTR__ast_7_ti_1/D_TI1_7009510";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9588[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9588";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_70096D8[] = "__OTR__ast_7_ti_1/D_TI1_70096D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiDelphorDL[] = "__OTR__ast_7_ti_1/aTiDelphorDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_99F8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_99F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9A58[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9A58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9A98[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9A98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_7009B58[] = "__OTR__ast_7_ti_1/D_TI1_7009B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1Bomb1DL[] = "__OTR__ast_7_ti_1/aTi1Bomb1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9F00[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9FC0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_A0E0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_A0E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_A160[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_A160";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700A190[] = "__OTR__ast_7_ti_1/D_TI1_700A190";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1Bomb2DL[] = "__OTR__ast_7_ti_1/aTi1Bomb2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_AA38[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_AA38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700AAD8[] = "__OTR__ast_7_ti_1/D_TI1_700AAD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700AB58[] = "__OTR__ast_7_ti_1/D_TI1_700AB58";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1LandmineDL[] = "__OTR__ast_7_ti_1/aTi1LandmineDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_ACA8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_ACA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_ADC8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_ADC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_AE58[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_AE58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700AEA8[] = "__OTR__ast_7_ti_1/D_TI1_700AEA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700AF30[] = "__OTR__ast_7_ti_1/D_TI1_700AF30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B158[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B188[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B188";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B1B8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B1B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B258[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B258";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B418[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B418";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B458[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B458";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B538[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B538";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700B5B8[] = "__OTR__ast_7_ti_1/D_TI1_700B5B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700B7B8[] = "__OTR__ast_7_ti_1/D_TI1_700B7B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1FekudaGun1DL[] = "__OTR__ast_7_ti_1/aTi1FekudaGun1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_BA70[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_BA70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_BAC0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_BAC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700BB10[] = "__OTR__ast_7_ti_1/D_TI1_700BB10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_BC38[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_BC38";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiBridgeDL[] = "__OTR__ast_7_ti_1/aTiBridgeDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_BEB0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_BEB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700BFB0[] = "__OTR__ast_7_ti_1/D_TI1_700BFB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700C3B0[] = "__OTR__ast_7_ti_1/D_TI1_700C3B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1FekudaDL[] = "__OTR__ast_7_ti_1/aTi1FekudaDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C5E8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C5E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C6B8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C6B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C748[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C748";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1DesertRoverAnim[] = "__OTR__ast_7_ti_1/aTi1DesertRoverAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1DesertRoverSkel[] = "__OTR__ast_7_ti_1/aTi1DesertRoverSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1FekudaGun2DL[] = "__OTR__ast_7_ti_1/aTi1FekudaGun2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C9E8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C9E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiBomberAnim[] = "__OTR__ast_7_ti_1/aTiBomberAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiBomberSkel[] = "__OTR__ast_7_ti_1/aTiBomberSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRascoAnim[] = "__OTR__ast_7_ti_1/aTiRascoAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRascoSkel[] = "__OTR__ast_7_ti_1/aTiRascoSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700D740[] = "__OTR__ast_7_ti_1/D_TI1_700D740";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_D7D8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_D7D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_D818[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_D818";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700D880[] = "__OTR__ast_7_ti_1/D_TI1_700D880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_D928[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_D928";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_D968[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_D968";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700D9B0[] = "__OTR__ast_7_ti_1/D_TI1_700D9B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DA18[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DA18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700DAD0[] = "__OTR__ast_7_ti_1/D_TI1_700DAD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DB38[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DB38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700DBB0[] = "__OTR__ast_7_ti_1/D_TI1_700DBB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DC10[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DC10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700DC50[] = "__OTR__ast_7_ti_1/D_TI1_700DC50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DCB8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DCB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700DD68[] = "__OTR__ast_7_ti_1/D_TI1_700DD68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700DDF0[] = "__OTR__ast_7_ti_1/D_TI1_700DDF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DE58[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DE58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700DED0[] = "__OTR__ast_7_ti_1/D_TI1_700DED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DF30[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DF30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700DF70[] = "__OTR__ast_7_ti_1/D_TI1_700DF70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DFC8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DFC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700E030[] = "__OTR__ast_7_ti_1/D_TI1_700E030";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E118[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E118";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E148[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E148";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E198[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E198";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700E1E8[] = "__OTR__ast_7_ti_1/D_TI1_700E1E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiBoulderDL[] = "__OTR__ast_7_ti_1/aTiBoulderDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E4E8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E4E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E6D8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E6D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700E858[] = "__OTR__ast_7_ti_1/D_TI1_700E858";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI1_700EA60[] = "__OTR__ast_7_ti_1/D_TI1_700EA60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_EB50[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_EB50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_ED50[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_ED50";
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7003EE8[] = "__OTR__ast_7_ti_2/D_TI2_7003EE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7003F00[] = "__OTR__ast_7_ti_2/D_TI2_7003F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_40D8[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_40D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4138[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4138";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_41C8[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_41C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7004270[] = "__OTR__ast_7_ti_2/D_TI2_7004270";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4328[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4328";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7004400[] = "__OTR__ast_7_ti_2/D_TI2_7004400";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4520[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4520";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4570[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4570";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_70045D0[] = "__OTR__ast_7_ti_2/D_TI2_70045D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4700[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4770[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4770";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_70047B0[] = "__OTR__ast_7_ti_2/D_TI2_70047B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_70048B0[] = "__OTR__ast_7_ti_2/D_TI2_70048B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_70049C0[] = "__OTR__ast_7_ti_2/D_TI2_70049C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4A60[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7004AB0[] = "__OTR__ast_7_ti_2/D_TI2_7004AB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7004CB0[] = "__OTR__ast_7_ti_2/D_TI2_7004CB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7004E80[] = "__OTR__ast_7_ti_2/D_TI2_7004E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_50D0[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_50D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_5140[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_5140";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_5180[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_5180";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_5210[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_5210";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7005300[] = "__OTR__ast_7_ti_2/D_TI2_7005300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_5370[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_5370";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_70054C0[] = "__OTR__ast_7_ti_2/D_TI2_70054C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_70084CC[] = "__OTR__ast_7_ti_2/D_TI2_70084CC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_70096EC[] = "__OTR__ast_7_ti_2/D_TI2_70096EC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7009700[] = "__OTR__ast_7_ti_2/D_TI2_7009700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_97B0[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_97B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7009890[] = "__OTR__ast_7_ti_2/D_TI2_7009890";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_9958[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_9958";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7009A80[] = "__OTR__ast_7_ti_2/D_TI2_7009A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_9B18[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_9B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7009B48[] = "__OTR__ast_7_ti_2/D_TI2_7009B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_7009D48[] = "__OTR__ast_7_ti_2/D_TI2_7009D48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI2_700E244[] = "__OTR__ast_7_ti_2/D_TI2_700E244";
|
||||
|
||||
@@ -0,0 +1,123 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8000708[] = "__OTR__ast_8_ti/D_TI_8000708";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8000D80[] = "__OTR__ast_8_ti/D_TI_8000D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8000D90[] = "__OTR__ast_8_ti/D_TI_8000D90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_E50[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8000FC0[] = "__OTR__ast_8_ti/D_TI_8000FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80011C0[] = "__OTR__ast_8_ti/D_TI_80011C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1278[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1278";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80012E8[] = "__OTR__ast_8_ti/D_TI_80012E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80013E8[] = "__OTR__ast_8_ti/D_TI_80013E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80014A0[] = "__OTR__ast_8_ti/D_TI_80014A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1558[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1558";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8001630[] = "__OTR__ast_8_ti/D_TI_8001630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1770[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1830[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1830";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80018D0[] = "__OTR__ast_8_ti/D_TI_80018D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_19F0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_19F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1A30[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8001A80[] = "__OTR__ast_8_ti/D_TI_8001A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1BC0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1BC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1C50[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1C50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8001D20[] = "__OTR__ast_8_ti/D_TI_8001D20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1DB8[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1DB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8001E20[] = "__OTR__ast_8_ti/D_TI_8001E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1EF0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8001FB0[] = "__OTR__ast_8_ti/D_TI_8001FB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2058[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2058";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80020D0[] = "__OTR__ast_8_ti/D_TI_80020D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2210[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2210";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_22E0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_22E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8002360[] = "__OTR__ast_8_ti/D_TI_8002360";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_25F8[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_25F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2658[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2658";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2688[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2688";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_26D8[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_26D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2788[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2788";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8002858[] = "__OTR__ast_8_ti/D_TI_8002858";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8002C58[] = "__OTR__ast_8_ti/D_TI_8002C58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8002E48[] = "__OTR__ast_8_ti/D_TI_8002E48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8002F48[] = "__OTR__ast_8_ti/D_TI_8002F48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80030F8[] = "__OTR__ast_8_ti/D_TI_80030F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80031F8[] = "__OTR__ast_8_ti/D_TI_80031F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8003378[] = "__OTR__ast_8_ti/D_TI_8003378";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8003478[] = "__OTR__ast_8_ti/D_TI_8003478";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80034A8[] = "__OTR__ast_8_ti/D_TI_80034A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_80035A8[] = "__OTR__ast_8_ti/D_TI_80035A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8003640[] = "__OTR__ast_8_ti/D_TI_8003640";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3A00[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3A00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3B30[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3BA0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3C20[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3C20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3CF0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3CF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3EF0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_40D0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_40D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8004200[] = "__OTR__ast_8_ti/D_TI_8004200";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8004600[] = "__OTR__ast_8_ti/D_TI_8004600";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8008FE8[] = "__OTR__ast_8_ti/D_TI_8008FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_8009000[] = "__OTR__ast_8_ti/D_TI_8009000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_9130[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_9130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_9190[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_9190";
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9004288[] = "__OTR__ast_9_ti/D_TI_9004288";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_90042A0[] = "__OTR__ast_9_ti/D_TI_90042A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4348[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4348";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_90043D0[] = "__OTR__ast_9_ti/D_TI_90043D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4470[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4470";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_90044E0[] = "__OTR__ast_9_ti/D_TI_90044E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4580[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4580";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_90045F0[] = "__OTR__ast_9_ti/D_TI_90045F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4718[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4718";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4778[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4778";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9004858[] = "__OTR__ast_9_ti/D_TI_9004858";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9004958[] = "__OTR__ast_9_ti/D_TI_9004958";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9004A68[] = "__OTR__ast_9_ti/D_TI_9004A68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9004E68[] = "__OTR__ast_9_ti/D_TI_9004E68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9005040[] = "__OTR__ast_9_ti/D_TI_9005040";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_50E8[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_50E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_90051C0[] = "__OTR__ast_9_ti/D_TI_90051C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_52F0[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_52F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_53B0[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_53B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9005450[] = "__OTR__ast_9_ti/D_TI_9005450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_5570[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_5570";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_55B0[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_55B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9005600[] = "__OTR__ast_9_ti/D_TI_9005600";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_5740[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_5740";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_57D0[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_57D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_90058A0[] = "__OTR__ast_9_ti/D_TI_90058A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_5948[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_5948";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_90059B8[] = "__OTR__ast_9_ti/D_TI_90059B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_9005AB8[] = "__OTR__ast_9_ti/D_TI_9005AB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_900FC4C[] = "__OTR__ast_9_ti/D_TI_900FC4C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_900FC60[] = "__OTR__ast_9_ti/D_TI_900FC60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_FD00[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_FD00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_900FD70[] = "__OTR__ast_9_ti/D_TI_900FD70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_FE10[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_FE10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_900FE80[] = "__OTR__ast_9_ti/D_TI_900FE80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_FFC8[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_FFC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_10078[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_10078";
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A000000[] = "__OTR__ast_A_ti/D_TI_A000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_98[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A0000C8[] = "__OTR__ast_A_ti/D_TI_A0000C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A0001C8[] = "__OTR__ast_A_ti/D_TI_A0001C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A0002BC[] = "__OTR__ast_A_ti/D_TI_A0002BC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A00047C[] = "__OTR__ast_A_ti/D_TI_A00047C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A000568[] = "__OTR__ast_A_ti/D_TI_A000568";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A000858[] = "__OTR__ast_A_ti/D_TI_A000858";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A000934[] = "__OTR__ast_A_ti/D_TI_A000934";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A000D50[] = "__OTR__ast_A_ti/D_TI_A000D50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A000EDC[] = "__OTR__ast_A_ti/D_TI_A000EDC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A001A70[] = "__OTR__ast_A_ti/D_TI_A001A70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A001BE0[] = "__OTR__ast_A_ti/D_TI_A001BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_1D08[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_1D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_1D58[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_1D58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A001DB0[] = "__OTR__ast_A_ti/D_TI_A001DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_1E50[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_1E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A001EC0[] = "__OTR__ast_A_ti/D_TI_A001EC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_1F60[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_1F60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A001FA0[] = "__OTR__ast_A_ti/D_TI_A001FA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_20C8[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_20C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_2118[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_2118";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A002170[] = "__OTR__ast_A_ti/D_TI_A002170";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_2298[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_2298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_2308[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_2308";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_A009990[] = "__OTR__ast_A_ti/D_TI_A009990";
|
||||
|
||||
@@ -0,0 +1,109 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aKattMarkDL[] = "__OTR__ast_allies/aKattMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_00000098[] = "__OTR__ast_allies/ast_allies_seg13_vtx_00000098";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D0000C8[] = "__OTR__ast_allies/D_D0000C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKattMarkTex[] = "__OTR__ast_allies/aKattMarkTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKattMarkTLUT[] = "__OTR__ast_allies/aKattMarkTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D000170[] = "__OTR__ast_allies/D_D000170";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D001090[] = "__OTR__ast_allies/D_D001090";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D001FB0[] = "__OTR__ast_allies/D_D001FB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D002ED0[] = "__OTR__ast_allies/D_D002ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D003DF0[] = "__OTR__ast_allies/D_D003DF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D004D10[] = "__OTR__ast_allies/D_D004D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D005C30[] = "__OTR__ast_allies/D_D005C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D006B50[] = "__OTR__ast_allies/D_D006B50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D007A70[] = "__OTR__ast_allies/D_D007A70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D008990[] = "__OTR__ast_allies/D_D008990";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKattRadarMarkDL[] = "__OTR__ast_allies/aKattRadarMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9908[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9908";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKattRadarMarkTex[] = "__OTR__ast_allies/aKattRadarMarkTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKattShipDL[] = "__OTR__ast_allies/aKattShipDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9C58[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9C58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9E58[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9E58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9EE8[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9EE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9F48[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9F48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_A148[] = "__OTR__ast_allies/ast_allies_seg13_vtx_A148";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_A1A8[] = "__OTR__ast_allies/ast_allies_seg13_vtx_A1A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_A368[] = "__OTR__ast_allies/ast_allies_seg13_vtx_A368";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D00A3B8[] = "__OTR__ast_allies/D_D00A3B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D00ABB8[] = "__OTR__ast_allies/D_D00ABB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D00ADB8[] = "__OTR__ast_allies/D_D00ADB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D00AFB8[] = "__OTR__ast_allies/D_D00AFB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D00B3B8[] = "__OTR__ast_allies/D_D00B3B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBillMarkDL[] = "__OTR__ast_allies/aBillMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_B658[] = "__OTR__ast_allies/ast_allies_seg13_vtx_B658";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBillMarkTex[] = "__OTR__ast_allies/aBillMarkTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBillMarkTLUT[] = "__OTR__ast_allies/aBillMarkTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aJamesMarkDL[] = "__OTR__ast_allies/aJamesMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_B7C0[] = "__OTR__ast_allies/ast_allies_seg13_vtx_B7C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aJamesMarkTex[] = "__OTR__ast_allies/aJamesMarkTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aJamesMarkTLUT[] = "__OTR__ast_allies/aJamesMarkTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBillShipDL[] = "__OTR__ast_allies/aBillShipDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BB70[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BB70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BD60[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BD60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BE20[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BE20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BE70[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BE70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BFB0[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BFB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_C030[] = "__OTR__ast_allies/ast_allies_seg13_vtx_C030";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_C230[] = "__OTR__ast_allies/ast_allies_seg13_vtx_C230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_C3D0[] = "__OTR__ast_allies/ast_allies_seg13_vtx_C3D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_C410[] = "__OTR__ast_allies/ast_allies_seg13_vtx_C410";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D00C470[] = "__OTR__ast_allies/D_D00C470";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D00C670[] = "__OTR__ast_allies/D_D00C670";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_D00C870[] = "__OTR__ast_allies/D_D00C870";
|
||||
|
||||
@@ -0,0 +1,452 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
#include "sf64level.h"
|
||||
#include "sf64event.h"
|
||||
#include "sf64player.h"
|
||||
#include "sf64audio_external.h"
|
||||
#include "sf64mesg.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C000000[] = "__OTR__ast_andross/D_ANDROSS_C000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndTitleCardTex[] = "__OTR__ast_andross/aAndTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C001880[] = "__OTR__ast_andross/D_ANDROSS_C001880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_18E8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_18E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0019E8[] = "__OTR__ast_andross/D_ANDROSS_C0019E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C00208C[] = "__OTR__ast_andross/D_ANDROSS_C00208C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C002654[] = "__OTR__ast_andross/D_ANDROSS_C002654";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C002B08[] = "__OTR__ast_andross/D_ANDROSS_C002B08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C002B20[] = "__OTR__ast_andross/D_ANDROSS_C002B20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_2C40[] = "__OTR__ast_andross/ast_andross_seg12_vtx_2C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_2D00[] = "__OTR__ast_andross/ast_andross_seg12_vtx_2D00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_2DC0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_2DC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C002F00[] = "__OTR__ast_andross/D_ANDROSS_C002F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_3000[] = "__OTR__ast_andross/ast_andross_seg12_vtx_3000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_3040[] = "__OTR__ast_andross/ast_andross_seg12_vtx_3040";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_3080[] = "__OTR__ast_andross/ast_andross_seg12_vtx_3080";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0031D0[] = "__OTR__ast_andross/D_ANDROSS_C0031D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0039D0[] = "__OTR__ast_andross/D_ANDROSS_C0039D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0041D0[] = "__OTR__ast_andross/D_ANDROSS_C0041D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0043D0[] = "__OTR__ast_andross/D_ANDROSS_C0043D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_44D8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_44D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C004658[] = "__OTR__ast_andross/D_ANDROSS_C004658";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C004860[] = "__OTR__ast_andross/D_ANDROSS_C004860";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_4978[] = "__OTR__ast_andross/ast_andross_seg12_vtx_4978";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_4B78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_4B78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_4BE8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_4BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C006F08[] = "__OTR__ast_andross/D_ANDROSS_C006F08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_6F20[] = "__OTR__ast_andross/ast_andross_seg12_gfx_6F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7250[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7250";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_73F0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_73F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7460[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7460";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_74C0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_74C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_76C0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_76C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_78A0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_78A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7A80[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7C70[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7C70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7E00[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7E00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7F30[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7F30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C007FC0[] = "__OTR__ast_andross/D_ANDROSS_C007FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0087C0[] = "__OTR__ast_andross/D_ANDROSS_C0087C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C00DE48[] = "__OTR__ast_andross/D_ANDROSS_C00DE48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C00E598[] = "__OTR__ast_andross/D_ANDROSS_C00E598";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_E5B0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_E5B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_E8A8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_E8A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_E8E8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_E8E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_E9F8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_E9F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_EBF8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_EBF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_ED68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_ED68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_EDE8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_EDE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_EF68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_EF68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_F098[] = "__OTR__ast_andross/ast_andross_seg12_vtx_F098";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C00F108[] = "__OTR__ast_andross/D_ANDROSS_C00F108";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C010108[] = "__OTR__ast_andross/D_ANDROSS_C010108";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C010188[] = "__OTR__ast_andross/D_ANDROSS_C010188";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C010988[] = "__OTR__ast_andross/D_ANDROSS_C010988";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C011988[] = "__OTR__ast_andross/D_ANDROSS_C011988";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C012188[] = "__OTR__ast_andross/D_ANDROSS_C012188";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C012988[] = "__OTR__ast_andross/D_ANDROSS_C012988";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_13190[] = "__OTR__ast_andross/ast_andross_seg12_gfx_13190";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_13308[] = "__OTR__ast_andross/ast_andross_seg12_vtx_13308";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_13508[] = "__OTR__ast_andross/ast_andross_seg12_vtx_13508";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_13578[] = "__OTR__ast_andross/ast_andross_seg12_vtx_13578";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_136F8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_136F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C013738[] = "__OTR__ast_andross/D_ANDROSS_C013738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C013F38[] = "__OTR__ast_andross/D_ANDROSS_C013F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C014738[] = "__OTR__ast_andross/D_ANDROSS_C014738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C015740[] = "__OTR__ast_andross/D_ANDROSS_C015740";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15848[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15848";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_159D0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_159D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15AD0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15B50[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15B50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15B90[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15B90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_15C00[] = "__OTR__ast_andross/ast_andross_seg12_gfx_15C00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15D00[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15D00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15DA0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15DA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15DE0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_15E50[] = "__OTR__ast_andross/ast_andross_seg12_gfx_15E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15F10[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C016100[] = "__OTR__ast_andross/D_ANDROSS_C016100";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C017050[] = "__OTR__ast_andross/D_ANDROSS_C017050";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C017430[] = "__OTR__ast_andross/D_ANDROSS_C017430";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C017440[] = "__OTR__ast_andross/D_ANDROSS_C017440";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C017598[] = "__OTR__ast_andross/D_ANDROSS_C017598";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0177B8[] = "__OTR__ast_andross/D_ANDROSS_C0177B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C018BC4[] = "__OTR__ast_andross/D_ANDROSS_C018BC4";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_18BD0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_18BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_18CE8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_18CE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_18ED8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_18ED8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C01C490[] = "__OTR__ast_andross/D_ANDROSS_C01C490";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C01CC3C[] = "__OTR__ast_andross/D_ANDROSS_C01CC3C";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1CD40[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1CD40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1CE50[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1CE50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1D050[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1D050";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1D150[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1D150";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1D248[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1D248";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1D450[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1D450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1D548[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1D548";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1D750[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1D750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1D870[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1D870";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1DA60[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1DA60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1DB80[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1DB80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1DC78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1DC78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1DE80[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1DE80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1DFA8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1DFA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1E1A8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1E1A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1E2C0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1E2C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1E3B8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1E3B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1E5C0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1E5C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1E6C8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1E6C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1E8D0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1E8D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1E9C8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1E9C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1EBD0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1EBD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1ED78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1ED78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1EF78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1EF78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1F158[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1F158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1F2E0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1F2E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1F3F0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1F3F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1F5F0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1F5F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1F750[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1F750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1F848[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1F848";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1FA20[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1FA20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1FB38[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1FB38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1FD38[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1FD38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1FE60[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1FE60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1FF58[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1FF58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C020128[] = "__OTR__ast_andross/D_ANDROSS_C020128";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_20930[] = "__OTR__ast_andross/ast_andross_seg12_gfx_20930";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_20A40[] = "__OTR__ast_andross/ast_andross_seg12_vtx_20A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_20C30[] = "__OTR__ast_andross/ast_andross_seg12_vtx_20C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_20E00[] = "__OTR__ast_andross/ast_andross_seg12_gfx_20E00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_20EF8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_20EF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_21100[] = "__OTR__ast_andross/ast_andross_seg12_gfx_21100";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_21210[] = "__OTR__ast_andross/ast_andross_seg12_vtx_21210";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_21400[] = "__OTR__ast_andross/ast_andross_seg12_vtx_21400";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_215A0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_215A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_21698[] = "__OTR__ast_andross/ast_andross_seg12_vtx_21698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_218A0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_218A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_219A0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_219A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_21BA0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_21BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_21C98[] = "__OTR__ast_andross/ast_andross_seg12_vtx_21C98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_21EA0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_21EA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22040[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22040";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22240[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22240";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22430[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22430";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C022520[] = "__OTR__ast_andross/D_ANDROSS_C022520";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22640[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22640";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22820[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22970[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22970";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C022A10[] = "__OTR__ast_andross/D_ANDROSS_C022A10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C022A90[] = "__OTR__ast_andross/D_ANDROSS_C022A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C023B54[] = "__OTR__ast_andross/D_ANDROSS_C023B54";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0240D0[] = "__OTR__ast_andross/D_ANDROSS_C0240D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C025C00[] = "__OTR__ast_andross/D_ANDROSS_C025C00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_25C10[] = "__OTR__ast_andross/ast_andross_seg12_gfx_25C10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_25D88[] = "__OTR__ast_andross/ast_andross_seg12_vtx_25D88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_25F78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_25F78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26028[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26028";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26158[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_261A0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_261A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_263B0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_263B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26430[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26430";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26630[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_267B0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_267B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26870[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26870";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_268F0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_268F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_26950[] = "__OTR__ast_andross/ast_andross_seg12_gfx_26950";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26A68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26A68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26C68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26C68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26E58[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26E58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C029F74[] = "__OTR__ast_andross/D_ANDROSS_C029F74";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C02E494[] = "__OTR__ast_andross/D_ANDROSS_C02E494";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C02EDA0[] = "__OTR__ast_andross/D_ANDROSS_C02EDA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C02F634[] = "__OTR__ast_andross/D_ANDROSS_C02F634";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C030244[] = "__OTR__ast_andross/D_ANDROSS_C030244";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C033780[] = "__OTR__ast_andross/D_ANDROSS_C033780";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C033D98[] = "__OTR__ast_andross/D_ANDROSS_C033D98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_33DB0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_33DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_33E88[] = "__OTR__ast_andross/ast_andross_seg12_vtx_33E88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34088[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34088";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_340C0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_340C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34198[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34198";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34398[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34398";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_34590[] = "__OTR__ast_andross/ast_andross_seg12_gfx_34590";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34668[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34668";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34868[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34868";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_34A50[] = "__OTR__ast_andross/ast_andross_seg12_gfx_34A50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34B68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34B68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34D58[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34D58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34F58[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34F58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C035110[] = "__OTR__ast_andross/D_ANDROSS_C035110";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C035154[] = "__OTR__ast_andross/D_ANDROSS_C035154";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0356A4[] = "__OTR__ast_andross/D_ANDROSS_C0356A4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0356CC[] = "__OTR__ast_andross/D_ANDROSS_C0356CC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C036310[] = "__OTR__ast_andross/D_ANDROSS_C036310";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C036B6C[] = "__OTR__ast_andross/D_ANDROSS_C036B6C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C03733C[] = "__OTR__ast_andross/D_ANDROSS_C03733C";
|
||||
|
||||
static const char D_ANDROSS_C037E3C[] = "__OTR__ast_andross/D_ANDROSS_C037E3C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C037FCC[] = "__OTR__ast_andross/D_ANDROSS_C037FCC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0380C0[] = "__OTR__ast_andross/D_ANDROSS_C0380C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0381B4[] = "__OTR__ast_andross/D_ANDROSS_C0381B4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C0382A8[] = "__OTR__ast_andross/D_ANDROSS_C0382A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C03839C[] = "__OTR__ast_andross/D_ANDROSS_C03839C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C038490[] = "__OTR__ast_andross/D_ANDROSS_C038490";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C038584[] = "__OTR__ast_andross/D_ANDROSS_C038584";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C038678[] = "__OTR__ast_andross/D_ANDROSS_C038678";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C03876C[] = "__OTR__ast_andross/D_ANDROSS_C03876C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C038860[] = "__OTR__ast_andross/D_ANDROSS_C038860";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C038954[] = "__OTR__ast_andross/D_ANDROSS_C038954";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndDoorHitbox[] = "__OTR__ast_andross/aAndDoorHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C038AC4[] = "__OTR__ast_andross/D_ANDROSS_C038AC4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndPathHitbox[] = "__OTR__ast_andross/aAndPathHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndPathIntersectionHitbox[] = "__OTR__ast_andross/aAndPathIntersectionHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndPassageHitbox[] = "__OTR__ast_andross/aAndPassageHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C038CCC[] = "__OTR__ast_andross/D_ANDROSS_C038CCC";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndAndrossHitbox[] = "__OTR__ast_andross/aAndAndrossHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndBrainHitbox[] = "__OTR__ast_andross/aAndBrainHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C038FE8[] = "__OTR__ast_andross/D_ANDROSS_C038FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C039208[] = "__OTR__ast_andross/D_ANDROSS_C039208";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_39260[] = "__OTR__ast_andross/ast_andross_seg12_vtx_39260";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C039290[] = "__OTR__ast_andross/D_ANDROSS_C039290";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ANDROSS_C03A290[] = "__OTR__ast_andross/D_ANDROSS_C03A290";
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,392 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
#include "sf64level.h"
|
||||
#include "sf64event.h"
|
||||
#include "sf64player.h"
|
||||
#include "sf64audio_external.h"
|
||||
#include "sf64mesg.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6TitleCardTex[] = "__OTR__ast_area_6/aA6TitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6000B60[] = "__OTR__ast_area_6/D_A6_6000B60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6001A80[] = "__OTR__ast_area_6/D_A6_6001A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_60029A0[] = "__OTR__ast_area_6/D_A6_60029A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_60038C0[] = "__OTR__ast_area_6/D_A6_60038C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_60047E0[] = "__OTR__ast_area_6/D_A6_60047E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6005700[] = "__OTR__ast_area_6/D_A6_6005700";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6006620[] = "__OTR__ast_area_6/D_A6_6006620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6006A40[] = "__OTR__ast_area_6/D_A6_6006A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_gfx_6A50[] = "__OTR__ast_area_6/ast_area_6_seg6_gfx_6A50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_6ED8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_6ED8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_70B8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_70B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7298[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7498[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7498";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7698[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7898[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7898";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7A98[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7A98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7C98[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7C98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7DB8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7DB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7FA8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7FA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8188[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8188";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8378[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8378";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8498[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8498";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8698[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8888[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8888";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6008918[] = "__OTR__ast_area_6/D_A6_6008918";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6008B18[] = "__OTR__ast_area_6/D_A6_6008B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6008D18[] = "__OTR__ast_area_6/D_A6_6008D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6008F18[] = "__OTR__ast_area_6/D_A6_6008F18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6009718[] = "__OTR__ast_area_6/D_A6_6009718";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6009B18[] = "__OTR__ast_area_6/D_A6_6009B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_gfx_A320[] = "__OTR__ast_area_6/ast_area_6_seg6_gfx_A320";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_A7A8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_A7A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_A988[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_A988";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_AB68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_AB68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_AD68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_AD68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_AF68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_AF68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B168[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B168";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B368[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B368";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B568[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B568";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B688[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B688";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B878[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B878";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_BA58[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_BA58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_BC48[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_BC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_BD68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_BD68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_BF68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_BF68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_C158[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_C158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_gfx_C1F0[] = "__OTR__ast_area_6/ast_area_6_seg6_gfx_C1F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_C678[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_C678";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_C858[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_C858";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_CA38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_CA38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_CC38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_CC38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_CE38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_CE38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D038[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D038";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D238[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D238";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D438[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D438";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D558[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D558";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D748[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D748";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D928[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D928";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_DB18[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_DB18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_DC38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_DC38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_DE38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_DE38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E028[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E028";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6UmbraStationDL[] = "__OTR__ast_area_6/aA6UmbraStationDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E2D8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E2D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E448[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E448";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E648[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E648";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E7E8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E7E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E9E8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E9E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_600EBE8[] = "__OTR__ast_area_6/D_A6_600EBE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_600EFE8[] = "__OTR__ast_area_6/D_A6_600EFE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_600F1F0[] = "__OTR__ast_area_6/D_A6_600F1F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_F350[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_F350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_F540[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_F540";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_F610[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_F610";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_F6A0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_F6A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_600F850[] = "__OTR__ast_area_6/D_A6_600F850";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_gfx_10050[] = "__OTR__ast_area_6/ast_area_6_seg6_gfx_10050";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10338[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10338";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10438[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10438";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10638[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10638";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_106C8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_106C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10788[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10788";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10978[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10978";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10A08[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10A08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6010A88[] = "__OTR__ast_area_6/D_A6_6010A88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6011288[] = "__OTR__ast_area_6/D_A6_6011288";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6011688[] = "__OTR__ast_area_6/D_A6_6011688";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6011888[] = "__OTR__ast_area_6/D_A6_6011888";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6011910[] = "__OTR__ast_area_6/D_A6_6011910";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_119C8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_119C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_11BA8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_11BA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6011D48[] = "__OTR__ast_area_6/D_A6_6011D48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6012550[] = "__OTR__ast_area_6/D_A6_6012550";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_12600[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_12600";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_12800[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_12800";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6012840[] = "__OTR__ast_area_6/D_A6_6012840";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6HarlockFrigateDL[] = "__OTR__ast_area_6/aA6HarlockFrigateDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_12D78[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_12D78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_12F78[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_12F78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_130C8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_130C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_132C8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_132C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_13338[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_13338";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_13478[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_13478";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_134D8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_134D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_136D8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_136D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_138B8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_138B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_13AB8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_13AB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_13CA8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_13CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6013CD8[] = "__OTR__ast_area_6/D_A6_6013CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_60144D8[] = "__OTR__ast_area_6/D_A6_60144D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6014CD8[] = "__OTR__ast_area_6/D_A6_6014CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_60154D8[] = "__OTR__ast_area_6/D_A6_60154D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6015CD8[] = "__OTR__ast_area_6/D_A6_6015CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6015EE0[] = "__OTR__ast_area_6/D_A6_6015EE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_15FA8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_15FA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16098[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16098";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6ZeramClassCruiserDL[] = "__OTR__ast_area_6/aA6ZeramClassCruiserDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_164E0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_164E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_166D0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_166D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_168D0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_168D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16AD0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16B80[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16B80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16C80[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16E00[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16E00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_17000[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_17000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_17080[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_17080";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6017120[] = "__OTR__ast_area_6/D_A6_6017120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6017920[] = "__OTR__ast_area_6/D_A6_6017920";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6017B20[] = "__OTR__ast_area_6/D_A6_6017B20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6017D20[] = "__OTR__ast_area_6/D_A6_6017D20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6017F20[] = "__OTR__ast_area_6/D_A6_6017F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6018720[] = "__OTR__ast_area_6/D_A6_6018720";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_187B8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_187B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_60187F8[] = "__OTR__ast_area_6/D_A6_60187F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6018878[] = "__OTR__ast_area_6/D_A6_6018878";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6018994[] = "__OTR__ast_area_6/D_A6_6018994";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6018BA0[] = "__OTR__ast_area_6/D_A6_6018BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6NinjinMissileDL[] = "__OTR__ast_area_6/aA6NinjinMissileDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_18D30[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_18D30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_18DD0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_18DD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_18FD0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_18FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6019130[] = "__OTR__ast_area_6/D_A6_6019130";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6019330[] = "__OTR__ast_area_6/D_A6_6019330";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6019530[] = "__OTR__ast_area_6/D_A6_6019530";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6RocketDL[] = "__OTR__ast_area_6/aA6RocketDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_19880[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_19880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_19940[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_19940";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_19AA0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_19AA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_19AE0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_19AE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6019B20[] = "__OTR__ast_area_6/D_A6_6019B20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6019D20[] = "__OTR__ast_area_6/D_A6_6019D20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6019F20[] = "__OTR__ast_area_6/D_A6_6019F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6SpaceMineDL[] = "__OTR__ast_area_6/aA6SpaceMineDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1A1B0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1A1B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1A1E0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1A1E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601A220[] = "__OTR__ast_area_6/D_A6_601A220";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601AA20[] = "__OTR__ast_area_6/D_A6_601AA20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1AA78[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1AA78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601AAA8[] = "__OTR__ast_area_6/D_A6_601AAA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601B2B0[] = "__OTR__ast_area_6/D_A6_601B2B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1B308[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1B308";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601B338[] = "__OTR__ast_area_6/D_A6_601B338";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601BB40[] = "__OTR__ast_area_6/D_A6_601BB40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BD20[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BD20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BD60[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BD60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BDA0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BDA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BDE0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BDE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BE20[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BE20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BE60[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BE60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BEA0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BEA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BEE0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BEE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601BF20[] = "__OTR__ast_area_6/D_A6_601BF20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601CF20[] = "__OTR__ast_area_6/D_A6_601CF20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601DF20[] = "__OTR__ast_area_6/D_A6_601DF20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601EF20[] = "__OTR__ast_area_6/D_A6_601EF20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_601FF20[] = "__OTR__ast_area_6/D_A6_601FF20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6020F20[] = "__OTR__ast_area_6/D_A6_6020F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6021F20[] = "__OTR__ast_area_6/D_A6_6021F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6022F20[] = "__OTR__ast_area_6/D_A6_6022F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6023F20[] = "__OTR__ast_area_6/D_A6_6023F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6023F64[] = "__OTR__ast_area_6/D_A6_6023F64";
|
||||
|
||||
static const char D_A6_6027F50[] = "__OTR__ast_area_6/D_A6_6027F50";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6UmbraStationHitbox[] = "__OTR__ast_area_6/aA6UmbraStationHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6HarlockFrigateHitbox[] = "__OTR__ast_area_6/aA6HarlockFrigateHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6ZeramClassCruiserHitbox[] = "__OTR__ast_area_6/aA6ZeramClassCruiserHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aA6GorgonHitbox[] = "__OTR__ast_area_6/aA6GorgonHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6028578[] = "__OTR__ast_area_6/D_A6_6028578";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_6028760[] = "__OTR__ast_area_6/D_A6_6028760";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_A6_60287A4[] = "__OTR__ast_area_6/D_A6_60287A4";
|
||||
|
||||
static const char D_A6_60289FC[] = "__OTR__ast_area_6/D_A6_60289FC";
|
||||
|
||||
@@ -0,0 +1,373 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aArwingLifeIconTex[] = "__OTR__ast_arwing/aArwingLifeIconTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aArwingLifeIconTLUT[] = "__OTR__ast_arwing/aArwingLifeIconTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwFoxHeadDL[] = "__OTR__ast_arwing/aAwFoxHeadDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_668[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_668";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_868[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_868";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A68[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_C68[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_C68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_D58[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_D58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_F48[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_F48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_1148[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_1148";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_12F8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_12F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_1418[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_1418";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_19D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_19D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_1AC8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_1AC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwJamesHeadDL[] = "__OTR__ast_arwing/aAwJamesHeadDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_22E0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_22E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_24C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_24C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_26C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_26C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_28C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_28C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_2980[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_2980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_2B80[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_2B80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_2D80[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_2D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_2F00[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_2F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_3020[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_3020";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_31D0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_31D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_33D0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_33D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_35D0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_35D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_3660[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_3660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_3820[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_3820";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3003960[] = "__OTR__ast_arwing/D_arwing_3003960";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30039E0[] = "__OTR__ast_arwing/D_arwing_30039E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3003A60[] = "__OTR__ast_arwing/D_arwing_3003A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3003AE0[] = "__OTR__ast_arwing/D_arwing_3003AE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3003B60[] = "__OTR__ast_arwing/D_arwing_3003B60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3003BE0[] = "__OTR__ast_arwing/D_arwing_3003BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3003C60[] = "__OTR__ast_arwing/D_arwing_3003C60";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwPeppyHeadDL[] = "__OTR__ast_arwing/aAwPeppyHeadDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4300[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_44F0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_44F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_46E0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_46E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_48E0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_48E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4A30[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4B50[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4B50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4D30[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4D30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4D80[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4F80[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4F80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4FE0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4FE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_51E0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_51E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_53C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_53C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_55C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_55C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_57A0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_57A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_5950[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_5950";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_5A50[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_5A50";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwSlippyHeadDL[] = "__OTR__ast_arwing/aAwSlippyHeadDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6050[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6050";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6090[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6170[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6170";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6370[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6370";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_64F0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_64F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_66B0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_66B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_68B0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_68B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6AB0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6AB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6C90[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6C90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6E90[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6E90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7070[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7070";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7170[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7170";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7370[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7370";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7470[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7470";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30074D0[] = "__OTR__ast_arwing/D_arwing_30074D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3007550[] = "__OTR__ast_arwing/D_arwing_3007550";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30075D0[] = "__OTR__ast_arwing/D_arwing_30075D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aArwingItemLasersDL[] = "__OTR__ast_arwing/aArwingItemLasersDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7A20[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3008960[] = "__OTR__ast_arwing/D_arwing_3008960";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3009960[] = "__OTR__ast_arwing/D_arwing_3009960";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwBodyDL[] = "__OTR__ast_arwing/aAwBodyDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A068[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A068";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A198[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A198";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A398[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A398";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A598[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A598";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A5C8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A5C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A648[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A648";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A678[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A678";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A6D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A6D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A798[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A798";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A858[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A858";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A8E8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A8E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A928[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A928";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_AAA8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_AAA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_AAD8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_AAD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_AB38[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_AB38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_ABD8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_ABD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_AC18[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_AC18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300AC48[] = "__OTR__ast_arwing/D_arwing_300AC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300B448[] = "__OTR__ast_arwing/D_arwing_300B448";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300BC48[] = "__OTR__ast_arwing/D_arwing_300BC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300C448[] = "__OTR__ast_arwing/D_arwing_300C448";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300CC48[] = "__OTR__ast_arwing/D_arwing_300CC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300D448[] = "__OTR__ast_arwing/D_arwing_300D448";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300DC48[] = "__OTR__ast_arwing/D_arwing_300DC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300E448[] = "__OTR__ast_arwing/D_arwing_300E448";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300EC48[] = "__OTR__ast_arwing/D_arwing_300EC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_300F448[] = "__OTR__ast_arwing/D_arwing_300F448";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3010448[] = "__OTR__ast_arwing/D_arwing_3010448";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwLaserGun2L[] = "__OTR__ast_arwing/aAwLaserGun2L";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11550[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11550";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11650[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11650";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_116C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_116C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwLaserGun1DL[] = "__OTR__ast_arwing/aAwLaserGun1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11820[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11890[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11890";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11990[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11990";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30119F0[] = "__OTR__ast_arwing/D_arwing_30119F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30121F0[] = "__OTR__ast_arwing/D_arwing_30121F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30129F0[] = "__OTR__ast_arwing/D_arwing_30129F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwCockpitViewDL[] = "__OTR__ast_arwing/aAwCockpitViewDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13468[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13468";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13498[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13498";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_134C8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_134C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_134F8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_134F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13538[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13538";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13578[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13578";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_136D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_136D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13758[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13758";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30137E8[] = "__OTR__ast_arwing/D_arwing_30137E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3013FE8[] = "__OTR__ast_arwing/D_arwing_3013FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30147E8[] = "__OTR__ast_arwing/D_arwing_30147E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwRightWingBrokenDL[] = "__OTR__ast_arwing/aAwRightWingBrokenDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_14D00[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_14D00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_14DF0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_14DF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_14EF0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_14EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3014F20[] = "__OTR__ast_arwing/D_arwing_3014F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwLeftWingBrokenDL[] = "__OTR__ast_arwing/aAwLeftWingBrokenDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15230[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15340[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15340";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15470[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15470";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwFlap2DL[] = "__OTR__ast_arwing/aAwFlap2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15508[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15508";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwFlap1DL[] = "__OTR__ast_arwing/aAwFlap1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15648[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15648";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwFlap3DL[] = "__OTR__ast_arwing/aAwFlap3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15798[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15798";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwFlap4DL[] = "__OTR__ast_arwing/aAwFlap4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_158E8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_158E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3015AF4[] = "__OTR__ast_arwing/D_arwing_3015AF4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3015C28[] = "__OTR__ast_arwing/D_arwing_3015C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3015D68[] = "__OTR__ast_arwing/D_arwing_3015D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwRightWingDL[] = "__OTR__ast_arwing/aAwRightWingDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15E48[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15E48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16048[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16048";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16238[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30163C4[] = "__OTR__ast_arwing/D_arwing_30163C4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3016610[] = "__OTR__ast_arwing/D_arwing_3016610";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwLeftWingDL[] = "__OTR__ast_arwing/aAwLeftWingDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16728[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16728";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16928[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16928";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3016B30[] = "__OTR__ast_arwing/D_arwing_3016B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16B88[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16B88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3016BB8[] = "__OTR__ast_arwing/D_arwing_3016BB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAwFalcoHeadDL[] = "__OTR__ast_arwing/aAwFalcoHeadDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_171E8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_171E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_172C8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_172C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_173E8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_173E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_175A8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_175A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17798[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17798";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_178D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_178D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17AD8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17CD8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17E68[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17E68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_18068[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_18068";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_18118[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_18118";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_181F8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_181F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_18238[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_18238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30182C8[] = "__OTR__ast_arwing/D_arwing_30182C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_3018348[] = "__OTR__ast_arwing/D_arwing_3018348";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30183D0[] = "__OTR__ast_arwing/D_arwing_30183D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_18438[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_18438";
|
||||
|
||||
static const ALIGN_ASSET(2) char aWindshieldClouldReflextionTex[] = "__OTR__ast_arwing/aWindshieldClouldReflextionTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ARWING_BLOB_1[] = "__OTR__ast_arwing/D_ARWING_BLOB_1";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30194E0[] = "__OTR__ast_arwing/D_arwing_30194E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_19548[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_19548";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_arwing_30195E8[] = "__OTR__ast_arwing/D_arwing_30195E8";
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,125 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2000000[] = "__OTR__ast_bg_planet/D_BG_PLANET_2000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_58[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2000088[] = "__OTR__ast_bg_planet/D_BG_PLANET_2000088";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2001090[] = "__OTR__ast_bg_planet/D_BG_PLANET_2001090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_10E8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_10E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2001118[] = "__OTR__ast_bg_planet/D_BG_PLANET_2001118";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2002120[] = "__OTR__ast_bg_planet/D_BG_PLANET_2002120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_2178[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_2178";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_20021A8[] = "__OTR__ast_bg_planet/D_BG_PLANET_20021A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_20031B0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20031B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_3208[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_3208";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2003238[] = "__OTR__ast_bg_planet/D_BG_PLANET_2003238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2004240[] = "__OTR__ast_bg_planet/D_BG_PLANET_2004240";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_4298[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_4298";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_20042C8[] = "__OTR__ast_bg_planet/D_BG_PLANET_20042C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_20052D0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20052D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_5328[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_5328";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2005358[] = "__OTR__ast_bg_planet/D_BG_PLANET_2005358";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2006360[] = "__OTR__ast_bg_planet/D_BG_PLANET_2006360";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_63B8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_63B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_20063E8[] = "__OTR__ast_bg_planet/D_BG_PLANET_20063E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_20073F0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20073F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_7448[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_7448";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2007478[] = "__OTR__ast_bg_planet/D_BG_PLANET_2007478";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2008480[] = "__OTR__ast_bg_planet/D_BG_PLANET_2008480";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_84D8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_84D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2008508[] = "__OTR__ast_bg_planet/D_BG_PLANET_2008508";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2009510[] = "__OTR__ast_bg_planet/D_BG_PLANET_2009510";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_9568[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_9568";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2009598[] = "__OTR__ast_bg_planet/D_BG_PLANET_2009598";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200A5A0[] = "__OTR__ast_bg_planet/D_BG_PLANET_200A5A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_A5F8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_A5F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200A628[] = "__OTR__ast_bg_planet/D_BG_PLANET_200A628";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200B630[] = "__OTR__ast_bg_planet/D_BG_PLANET_200B630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_B688[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_B688";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200B6B8[] = "__OTR__ast_bg_planet/D_BG_PLANET_200B6B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200C6C0[] = "__OTR__ast_bg_planet/D_BG_PLANET_200C6C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_C718[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_C718";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200C748[] = "__OTR__ast_bg_planet/D_BG_PLANET_200C748";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200D750[] = "__OTR__ast_bg_planet/D_BG_PLANET_200D750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_D7A8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_D7A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200D7E8[] = "__OTR__ast_bg_planet/D_BG_PLANET_200D7E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200E7F0[] = "__OTR__ast_bg_planet/D_BG_PLANET_200E7F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_E848[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_E848";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200E878[] = "__OTR__ast_bg_planet/D_BG_PLANET_200E878";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200F080[] = "__OTR__ast_bg_planet/D_BG_PLANET_200F080";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_F0D8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_F0D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200F108[] = "__OTR__ast_bg_planet/D_BG_PLANET_200F108";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200F910[] = "__OTR__ast_bg_planet/D_BG_PLANET_200F910";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_F968[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_F968";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_200F998[] = "__OTR__ast_bg_planet/D_BG_PLANET_200F998";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_20101A0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20101A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_101F8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_101F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2010228[] = "__OTR__ast_bg_planet/D_BG_PLANET_2010228";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2010A30[] = "__OTR__ast_bg_planet/D_BG_PLANET_2010A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_10A88[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_10A88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2010AB8[] = "__OTR__ast_bg_planet/D_BG_PLANET_2010AB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_20112C0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20112C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_11318[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_11318";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_PLANET_2011358[] = "__OTR__ast_bg_planet/D_BG_PLANET_2011358";
|
||||
|
||||
@@ -0,0 +1,89 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2000000[] = "__OTR__ast_bg_space/D_BG_SPACE_2000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_58[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2000088[] = "__OTR__ast_bg_space/D_BG_SPACE_2000088";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2000890[] = "__OTR__ast_bg_space/D_BG_SPACE_2000890";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_8E8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_8E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2000918[] = "__OTR__ast_bg_space/D_BG_SPACE_2000918";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2001120[] = "__OTR__ast_bg_space/D_BG_SPACE_2001120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_1178[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_1178";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_20011A8[] = "__OTR__ast_bg_space/D_BG_SPACE_20011A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_20019B0[] = "__OTR__ast_bg_space/D_BG_SPACE_20019B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_1A08[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_1A08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2001A38[] = "__OTR__ast_bg_space/D_BG_SPACE_2001A38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2002240[] = "__OTR__ast_bg_space/D_BG_SPACE_2002240";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_2298[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_2298";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_20022C8[] = "__OTR__ast_bg_space/D_BG_SPACE_20022C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2002AD0[] = "__OTR__ast_bg_space/D_BG_SPACE_2002AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_2B28[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_2B28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2002B58[] = "__OTR__ast_bg_space/D_BG_SPACE_2002B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2003360[] = "__OTR__ast_bg_space/D_BG_SPACE_2003360";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_33B8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_33B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_20033E8[] = "__OTR__ast_bg_space/D_BG_SPACE_20033E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2003BF0[] = "__OTR__ast_bg_space/D_BG_SPACE_2003BF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_3C48[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_3C48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2003C78[] = "__OTR__ast_bg_space/D_BG_SPACE_2003C78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2004480[] = "__OTR__ast_bg_space/D_BG_SPACE_2004480";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_44D8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_44D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2004508[] = "__OTR__ast_bg_space/D_BG_SPACE_2004508";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2004D10[] = "__OTR__ast_bg_space/D_BG_SPACE_2004D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_4D68[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_4D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2004D98[] = "__OTR__ast_bg_space/D_BG_SPACE_2004D98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_20055A0[] = "__OTR__ast_bg_space/D_BG_SPACE_20055A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_55F8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_55F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2005628[] = "__OTR__ast_bg_space/D_BG_SPACE_2005628";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2005E30[] = "__OTR__ast_bg_space/D_BG_SPACE_2005E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_5E88[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_5E88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2005EB8[] = "__OTR__ast_bg_space/D_BG_SPACE_2005EB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_20066C0[] = "__OTR__ast_bg_space/D_BG_SPACE_20066C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_6718[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_6718";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2006748[] = "__OTR__ast_bg_space/D_BG_SPACE_2006748";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2006F50[] = "__OTR__ast_bg_space/D_BG_SPACE_2006F50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_6FA8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_6FA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BG_SPACE_2006FD8[] = "__OTR__ast_bg_space/D_BG_SPACE_2006FD8";
|
||||
|
||||
@@ -0,0 +1,113 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aBlueMarineLifeIconTex[] = "__OTR__ast_blue_marine/aBlueMarineLifeIconTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBlueMarineLifeIconTLUT[] = "__OTR__ast_blue_marine/aBlueMarineLifeIconTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000090[] = "__OTR__ast_blue_marine/D_blue_marine_3000090";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000120[] = "__OTR__ast_blue_marine/D_blue_marine_3000120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000130[] = "__OTR__ast_blue_marine/D_blue_marine_3000130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_228[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_228";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000418[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_00000418";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000470[] = "__OTR__ast_blue_marine/D_blue_marine_3000470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_528[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_528";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_30005E8[] = "__OTR__ast_blue_marine/D_blue_marine_30005E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000600[] = "__OTR__ast_blue_marine/D_blue_marine_3000600";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000640[] = "__OTR__ast_blue_marine/D_blue_marine_3000640";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000660[] = "__OTR__ast_blue_marine/D_blue_marine_3000660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6B8[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_30006E8[] = "__OTR__ast_blue_marine/D_blue_marine_30006E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000AF0[] = "__OTR__ast_blue_marine/D_blue_marine_3000AF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_B60[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_B60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3000C70[] = "__OTR__ast_blue_marine/D_blue_marine_3000C70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_FD0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_11D0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_11D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_13C0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_13C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1400[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1400";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_15D0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_15D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1700[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1760[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1760";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1790[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1790";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1840[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1840";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3001900[] = "__OTR__ast_blue_marine/D_blue_marine_3001900";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3001980[] = "__OTR__ast_blue_marine/D_blue_marine_3001980";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3002180[] = "__OTR__ast_blue_marine/D_blue_marine_3002180";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3002980[] = "__OTR__ast_blue_marine/D_blue_marine_3002980";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3003180[] = "__OTR__ast_blue_marine/D_blue_marine_3003180";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3003980[] = "__OTR__ast_blue_marine/D_blue_marine_3003980";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3004180[] = "__OTR__ast_blue_marine/D_blue_marine_3004180";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3004980[] = "__OTR__ast_blue_marine/D_blue_marine_3004980";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3005980[] = "__OTR__ast_blue_marine/D_blue_marine_3005980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_5C18[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_5C18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_5E18[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_5E18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_5E78[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_5E78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_5EB8[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_5EB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6098[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6098";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6158[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_61B8[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_61B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6218[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6218";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_30062E8[] = "__OTR__ast_blue_marine/D_blue_marine_30062E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3006AF0[] = "__OTR__ast_blue_marine/D_blue_marine_3006AF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6B60[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6B60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3006C70[] = "__OTR__ast_blue_marine/D_blue_marine_3006C70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6CF0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6CF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_blue_marine_3006DE0[] = "__OTR__ast_blue_marine/D_blue_marine_3006DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6F20[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_7090[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_7090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_71D0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_71D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_7290[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_7290";
|
||||
|
||||
@@ -0,0 +1,286 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
#include "sf64level.h"
|
||||
#include "sf64event.h"
|
||||
#include "sf64player.h"
|
||||
#include "sf64audio_external.h"
|
||||
#include "sf64mesg.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoTitleCardTex[] = "__OTR__ast_bolse/aBoTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6000C80[] = "__OTR__ast_bolse/D_BO_6000C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6000D80[] = "__OTR__ast_bolse/D_BO_6000D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_F38[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_1138[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_1138";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_1318[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_1318";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_1508[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_1508";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_16E8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_16E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_18C8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_18C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6001908[] = "__OTR__ast_bolse/D_BO_6001908";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoBaseCoreAnim[] = "__OTR__ast_bolse/aBoBaseCoreAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoBaseCoreSkel[] = "__OTR__ast_bolse/aBoBaseCoreSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6002020[] = "__OTR__ast_bolse/D_BO_6002020";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2608[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2608";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2788[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2788";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2958[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2958";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2B58[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2D38[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2F18[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2F18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3108[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3108";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_32F8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_32F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_34E8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_34E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3518[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3518";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_36F8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_36F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_38D8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_38D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3AD8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3CD8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3ED8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3ED8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_40D8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_40D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_42C8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_42C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_44C8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_44C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_46A8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_46A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6004848[] = "__OTR__ast_bolse/D_BO_6004848";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6005048[] = "__OTR__ast_bolse/D_BO_6005048";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_5450[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_5450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_5538[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_5538";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_5708[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_5708";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6005908[] = "__OTR__ast_bolse/D_BO_6005908";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6006108[] = "__OTR__ast_bolse/D_BO_6006108";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6006910[] = "__OTR__ast_bolse/D_BO_6006910";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_6990[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_6990";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6006AD0[] = "__OTR__ast_bolse/D_BO_6006AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6006ED0[] = "__OTR__ast_bolse/D_BO_6006ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6006F50[] = "__OTR__ast_bolse/D_BO_6006F50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6006FD0[] = "__OTR__ast_bolse/D_BO_6006FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_60077D0[] = "__OTR__ast_bolse/D_BO_60077D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6007BD0[] = "__OTR__ast_bolse/D_BO_6007BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_7C50[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_7C50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_7D08[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_7D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_7DC8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_7DC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6007DF8[] = "__OTR__ast_bolse/D_BO_6007DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_8200[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_8200";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_82C0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_82C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_8400[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_8400";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6008440[] = "__OTR__ast_bolse/D_BO_6008440";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6008668[] = "__OTR__ast_bolse/D_BO_6008668";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_60086B4[] = "__OTR__ast_bolse/D_BO_60086B4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_60086F4[] = "__OTR__ast_bolse/D_BO_60086F4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6008760[] = "__OTR__ast_bolse/D_BO_6008760";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6008770[] = "__OTR__ast_bolse/D_BO_6008770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_88C8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_88C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_8978[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_8978";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_8A48[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_8A48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_8B58[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_8B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6008BB8[] = "__OTR__ast_bolse/D_BO_6008BB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_60093B8[] = "__OTR__ast_bolse/D_BO_60093B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6009BC0[] = "__OTR__ast_bolse/D_BO_6009BC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_9C68[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_9C68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_9D68[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_9D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_9DB0[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_9DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_9E20[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_9E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_9F20[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_9F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_9F78[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_9F78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_9FC0[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_9FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A0D8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A0D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A258[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A258";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600A2C0[] = "__OTR__ast_bolse/D_BO_600A2C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A3D8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A3D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A558[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A558";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_A5C0[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_A5C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A680[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A680";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A7C0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A7C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600A810[] = "__OTR__ast_bolse/D_BO_600A810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A910[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A910";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_AA90[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_AA90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600AB90[] = "__OTR__ast_bolse/D_BO_600AB90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_AC40[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_AC40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_AC80[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_AC80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600AD80[] = "__OTR__ast_bolse/D_BO_600AD80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_B580[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_B580";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B698[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B708[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B708";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B848[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B848";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoBuildingDL[] = "__OTR__ast_bolse/aBoBuildingDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B960[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B960";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B9A0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B9A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600BAA0[] = "__OTR__ast_bolse/D_BO_600BAA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BC00[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BC00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BC80[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BC80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BD80[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BD80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BDC0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BDC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600BEC0[] = "__OTR__ast_bolse/D_BO_600BEC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BEF0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BEF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600BF30[] = "__OTR__ast_bolse/D_BO_600BF30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600C0B8[] = "__OTR__ast_bolse/D_BO_600C0B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600C2D8[] = "__OTR__ast_bolse/D_BO_600C2D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoBaseShieldDL[] = "__OTR__ast_bolse/aBoBaseShieldDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_C638[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_C638";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_C828[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_C828";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_CA28[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_CA28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_CC08[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_CC08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_CE08[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_CE08";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoBaseShieldTex[] = "__OTR__ast_bolse/aBoBaseShieldTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600D190[] = "__OTR__ast_bolse/D_BO_600D190";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_D220[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_D220";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_D260[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_D260";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600D2A0[] = "__OTR__ast_bolse/D_BO_600D2A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600E2A0[] = "__OTR__ast_bolse/D_BO_600E2A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoLaserCannonAnim[] = "__OTR__ast_bolse/aBoLaserCannonAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoLaserCannonSkel[] = "__OTR__ast_bolse/aBoLaserCannonSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoShieldReactorAnim[] = "__OTR__ast_bolse/aBoShieldReactorAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoShieldReactorSkel[] = "__OTR__ast_bolse/aBoShieldReactorSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoPoleDL[] = "__OTR__ast_bolse/aBoPoleDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_F578[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_F578";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_F668[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_F668";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600F728[] = "__OTR__ast_bolse/D_BO_600F728";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600FF30[] = "__OTR__ast_bolse/D_BO_600FF30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_600FF74[] = "__OTR__ast_bolse/D_BO_600FF74";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6010294[] = "__OTR__ast_bolse/D_BO_6010294";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_601170C[] = "__OTR__ast_bolse/D_BO_601170C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6011B20[] = "__OTR__ast_bolse/D_BO_6011B20";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoShieldReactorHitbox[] = "__OTR__ast_bolse/aBoShieldReactorHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6011BA4[] = "__OTR__ast_bolse/D_BO_6011BA4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoLaserCannonHitbox[] = "__OTR__ast_bolse/aBoLaserCannonHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoPoleHitbox[] = "__OTR__ast_bolse/aBoPoleHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoBuildingHitbox[] = "__OTR__ast_bolse/aBoBuildingHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoBaseCoreHitbox[] = "__OTR__ast_bolse/aBoBaseCoreHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_BO_6011E28[] = "__OTR__ast_bolse/D_BO_6011E28";
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user