mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-02-02 16:23:57 +03:00
Merge remote-tracking branch 'origin' into independence
This commit is contained in:
commit
be2218db0d
49
.github/workflows/linux.yml
vendored
Normal file
49
.github/workflows/linux.yml
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
name: Linux Validation
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ "*" ]
|
||||
|
||||
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/Starship starship-release/
|
||||
- name: Publish packaged artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: starship-linux-x64
|
||||
path: starship-release
|
||||
retention-days: 1
|
29
.github/workflows/mac.yml
vendored
Normal file
29
.github/workflows/mac.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
name: MacOS Validation
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ "*" ]
|
||||
|
||||
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/Starship starship-release/
|
||||
- name: Publish packaged artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: starship-mac-x64
|
||||
path: starship-release
|
||||
retention-days: 1
|
145
.github/workflows/main.yml
vendored
Normal file
145
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,145 @@
|
||||
name: GenerateBuilds
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
generate-port-otr:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get install gcc g++ git cmake ninja-build lsb-release
|
||||
- name: ccache
|
||||
uses: hendrikmuhs/ccache-action@v1.2.13
|
||||
with:
|
||||
key: ${{ runner.os }}-otr-ccache-${{ github.ref }}-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-otr-ccache-${{ github.ref }}
|
||||
${{ runner.os }}-otr-ccache-
|
||||
- name: Cache build folders
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
key: ${{ runner.os }}-otr-build-${{ github.ref }}-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-otr-build-${{ github.ref }}
|
||||
${{ runner.os }}-otr-build-
|
||||
path: |
|
||||
tools/Torch/cmake-build-release
|
||||
- name: Generate starship.otr
|
||||
run: |
|
||||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
||||
make -C tools/Torch type=release -j3
|
||||
tools/Torch/cmake-build-release/torch pack port starship.otr
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: starship.otr
|
||||
path: starship.otr
|
||||
retention-days: 1
|
||||
|
||||
build-windows:
|
||||
needs: generate-port-otr
|
||||
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 --config Release --parallel 10
|
||||
- name: Download starship.otr
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: starship.otr
|
||||
path: ./build/x64/Release/starship.otr
|
||||
- name: Upload build
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: starship-windows
|
||||
path: ./build/x64/Release
|
||||
|
||||
build-macos:
|
||||
needs: generate-port-otr
|
||||
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 --config Release -j3
|
||||
- name: Download starship.otr
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: starship.otr
|
||||
path: build-cmake/starship.otr
|
||||
- name: Create Package
|
||||
run: |
|
||||
mkdir starship-release
|
||||
mv build-cmake/Starship starship-release/
|
||||
mv build-cmake/starship.otr starship-release/
|
||||
- name: Publish packaged artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: starship-mac-x64
|
||||
path: starship-release
|
||||
|
||||
build-linux:
|
||||
needs: generate-port-otr
|
||||
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 --enable-hidapi-libusb
|
||||
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: Download starship.otr
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: starship.otr
|
||||
path: build-cmake/starship.otr
|
||||
- name: Build
|
||||
run: |
|
||||
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release
|
||||
cmake --build build-cmake --config Release -j3
|
||||
(cd build-cmake && cpack -G External)
|
||||
|
||||
mv README.md readme.txt
|
||||
mv build-cmake/*.appimage starship.appimage
|
||||
- name: Upload build
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Starship-linux
|
||||
path: |
|
||||
starship.appimage
|
23
.github/workflows/windows.yml
vendored
Normal file
23
.github/workflows/windows.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
name: Windows Validation
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ "*" ]
|
||||
|
||||
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
|
||||
retention-days: 1
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -20,7 +20,6 @@ ctx.c.m2c
|
||||
assets/yaml/us/ast_test.yaml
|
||||
/audio_data
|
||||
src/assets/*
|
||||
include/assets/*
|
||||
/build
|
||||
build-new/
|
||||
tools/mio0
|
||||
|
@ -530,20 +530,29 @@ 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
|
||||
COMMAND ${TORCH_EXECUTABLE} pack port starship.otr
|
||||
COMMAND ${TORCH_EXECUTABLE} otr baserom.us.rev1.z64
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_SOURCE_DIR}/sf64.otr" "${CMAKE_BINARY_DIR}/sf64.otr"
|
||||
)
|
||||
|
||||
add_custom_target(
|
||||
GeneratePortOTR
|
||||
DEPENDS torch
|
||||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
COMMAND ${TORCH_EXECUTABLE} pack port starship.otr
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different "${CMAKE_SOURCE_DIR}/starship.otr" "${CMAKE_BINARY_DIR}/starship.otr"
|
||||
)
|
355
include/assets/ast_7_ti_1.h
Normal file
355
include/assets/ast_7_ti_1.h
Normal file
@ -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";
|
||||
|
81
include/assets/ast_7_ti_2.h
Normal file
81
include/assets/ast_7_ti_2.h
Normal file
@ -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";
|
||||
|
123
include/assets/ast_8_ti.h
Normal file
123
include/assets/ast_8_ti.h
Normal file
@ -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";
|
||||
|
79
include/assets/ast_9_ti.h
Normal file
79
include/assets/ast_9_ti.h
Normal file
@ -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";
|
||||
|
57
include/assets/ast_A_ti.h
Normal file
57
include/assets/ast_A_ti.h
Normal file
@ -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";
|
||||
|
109
include/assets/ast_allies.h
Normal file
109
include/assets/ast_allies.h
Normal file
@ -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";
|
||||
|
452
include/assets/ast_andross.h
Normal file
452
include/assets/ast_andross.h
Normal file
@ -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";
|
||||
|
1058
include/assets/ast_aquas.h
Normal file
1058
include/assets/ast_aquas.h
Normal file
File diff suppressed because it is too large
Load Diff
392
include/assets/ast_area_6.h
Normal file
392
include/assets/ast_area_6.h
Normal file
@ -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";
|
||||
|
373
include/assets/ast_arwing.h
Normal file
373
include/assets/ast_arwing.h
Normal file
@ -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";
|
||||
|
8870
include/assets/ast_audio.h
Normal file
8870
include/assets/ast_audio.h
Normal file
File diff suppressed because it is too large
Load Diff
125
include/assets/ast_bg_planet.h
Normal file
125
include/assets/ast_bg_planet.h
Normal file
@ -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";
|
||||
|
89
include/assets/ast_bg_space.h
Normal file
89
include/assets/ast_bg_space.h
Normal file
@ -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";
|
||||
|
113
include/assets/ast_blue_marine.h
Normal file
113
include/assets/ast_blue_marine.h
Normal file
@ -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";
|
||||
|
286
include/assets/ast_bolse.h
Normal file
286
include/assets/ast_bolse.h
Normal file
@ -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";
|
||||
|
881
include/assets/ast_common.h
Normal file
881
include/assets/ast_common.h
Normal file
@ -0,0 +1,881 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1000000[] = "__OTR__ast_common/D_1000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1000280[] = "__OTR__ast_common/D_1000280";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1000640[] = "__OTR__ast_common/D_1000640";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoostGaugeFrameTex[] = "__OTR__ast_common/aBoostGaugeFrameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1001030[] = "__OTR__ast_common/D_1001030";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1001070[] = "__OTR__ast_common/D_1001070";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1001480[] = "__OTR__ast_common/D_1001480";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1001720[] = "__OTR__ast_common/D_1001720";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1001CC0[] = "__OTR__ast_common/D_1001CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1002040[] = "__OTR__ast_common/D_1002040";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1002220[] = "__OTR__ast_common/D_1002220";
|
||||
|
||||
static const ALIGN_ASSET(2) char aShieldGaugeFrameEdgeTex[] = "__OTR__ast_common/aShieldGaugeFrameEdgeTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10022E0[] = "__OTR__ast_common/D_10022E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1002340[] = "__OTR__ast_common/D_1002340";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10024D0[] = "__OTR__ast_common/D_10024D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aShieldGaugeFrameTex[] = "__OTR__ast_common/aShieldGaugeFrameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1003130[] = "__OTR__ast_common/D_1003130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_31C8[] = "__OTR__ast_common/ast_common_seg1_vtx_31C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1003208[] = "__OTR__ast_common/D_1003208";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1003288[] = "__OTR__ast_common/D_1003288";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFalcoPortraitTex[] = "__OTR__ast_common/aFalcoPortraitTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10041C0[] = "__OTR__ast_common/D_10041C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoxPortraitTex[] = "__OTR__ast_common/aFoxPortraitTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1006000[] = "__OTR__ast_common/D_1006000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1006F20[] = "__OTR__ast_common/D_1006F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1007E40[] = "__OTR__ast_common/D_1007E40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1008D60[] = "__OTR__ast_common/D_1008D60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1009C80[] = "__OTR__ast_common/D_1009C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_100ABA0[] = "__OTR__ast_common/D_100ABA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aPeppyPortraitTex[] = "__OTR__ast_common/aPeppyPortraitTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_100C9E0[] = "__OTR__ast_common/D_100C9E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSlippyPortraitTex[] = "__OTR__ast_common/aSlippyPortraitTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_100E820[] = "__OTR__ast_common/D_100E820";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_100F740[] = "__OTR__ast_common/D_100F740";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010660[] = "__OTR__ast_common/D_1010660";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10106A0[] = "__OTR__ast_common/D_10106A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10106B0[] = "__OTR__ast_common/D_10106B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10106F0[] = "__OTR__ast_common/D_10106F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010700[] = "__OTR__ast_common/D_1010700";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010740[] = "__OTR__ast_common/D_1010740";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010750[] = "__OTR__ast_common/D_1010750";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010790[] = "__OTR__ast_common/D_1010790";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10107A0[] = "__OTR__ast_common/D_10107A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10107E0[] = "__OTR__ast_common/D_10107E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10107F0[] = "__OTR__ast_common/D_10107F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010830[] = "__OTR__ast_common/D_1010830";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010840[] = "__OTR__ast_common/D_1010840";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010880[] = "__OTR__ast_common/D_1010880";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010890[] = "__OTR__ast_common/D_1010890";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10108D0[] = "__OTR__ast_common/D_10108D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10108E0[] = "__OTR__ast_common/D_10108E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010920[] = "__OTR__ast_common/D_1010920";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010930[] = "__OTR__ast_common/D_1010930";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010970[] = "__OTR__ast_common/D_1010970";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010980[] = "__OTR__ast_common/D_1010980";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010A00[] = "__OTR__ast_common/D_1010A00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010A10[] = "__OTR__ast_common/D_1010A10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010A80[] = "__OTR__ast_common/D_1010A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1010A90[] = "__OTR__ast_common/D_1010A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10110B0[] = "__OTR__ast_common/D_10110B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10110C0[] = "__OTR__ast_common/D_10110C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10110F8[] = "__OTR__ast_common/D_10110F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011110[] = "__OTR__ast_common/D_1011110";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011148[] = "__OTR__ast_common/D_1011148";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011160[] = "__OTR__ast_common/D_1011160";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011198[] = "__OTR__ast_common/D_1011198";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10111B0[] = "__OTR__ast_common/D_10111B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10111E8[] = "__OTR__ast_common/D_10111E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011200[] = "__OTR__ast_common/D_1011200";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011270[] = "__OTR__ast_common/D_1011270";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRadarFrameTex[] = "__OTR__ast_common/aRadarFrameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRadarFrameTLUT[] = "__OTR__ast_common/aRadarFrameTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsBombIconTex[] = "__OTR__ast_common/aVsBombIconTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsBombIconTLUT[] = "__OTR__ast_common/aVsBombIconTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011750[] = "__OTR__ast_common/D_1011750";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011958[] = "__OTR__ast_common/D_1011958";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011980[] = "__OTR__ast_common/D_1011980";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011A28[] = "__OTR__ast_common/D_1011A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011A40[] = "__OTR__ast_common/D_1011A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011AB0[] = "__OTR__ast_common/D_1011AB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIncomingMsgButtonTex[] = "__OTR__ast_common/aIncomingMsgButtonTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIncomingMsgButtonTLUT[] = "__OTR__ast_common/aIncomingMsgButtonTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIncomingMsgSignal1Tex[] = "__OTR__ast_common/aIncomingMsgSignal1Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIncomingMsgSignal1TLUT[] = "__OTR__ast_common/aIncomingMsgSignal1TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIncomingMsgSignal2Tex[] = "__OTR__ast_common/aIncomingMsgSignal2Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIncomingMsgSignal2TLUT[] = "__OTR__ast_common/aIncomingMsgSignal2TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIncomingMsgSignal3Tex[] = "__OTR__ast_common/aIncomingMsgSignal3Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIncomingMsgSignal3TLUT[] = "__OTR__ast_common/aIncomingMsgSignal3TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011E80[] = "__OTR__ast_common/D_1011E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011EC0[] = "__OTR__ast_common/D_1011EC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aXTex[] = "__OTR__ast_common/aXTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aXTLUT[] = "__OTR__ast_common/aXTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1011F20[] = "__OTR__ast_common/D_1011F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_11FC0[] = "__OTR__ast_common/ast_common_seg1_vtx_11FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1012000[] = "__OTR__ast_common/D_1012000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1012100[] = "__OTR__ast_common/D_1012100";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingEmptySlotDL[] = "__OTR__ast_common/aGoldRingEmptySlotDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_12160[] = "__OTR__ast_common/ast_common_seg1_vtx_12160";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingEmptySlotTex[] = "__OTR__ast_common/aGoldRingEmptySlotTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1012290[] = "__OTR__ast_common/D_1012290";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10126B0[] = "__OTR__ast_common/D_10126B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10126F0[] = "__OTR__ast_common/D_10126F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1012750[] = "__OTR__ast_common/D_1012750";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoostGaugeCoolTex[] = "__OTR__ast_common/aBoostGaugeCoolTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoostGaugeCoolTLUT[] = "__OTR__ast_common/aBoostGaugeCoolTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoostGaugeOverheatTex[] = "__OTR__ast_common/aBoostGaugeOverheatTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBoostGaugeOverheatTLUT[] = "__OTR__ast_common/aBoostGaugeOverheatTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10129C0[] = "__OTR__ast_common/D_10129C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1013090[] = "__OTR__ast_common/D_1013090";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMsgWindowBgTex[] = "__OTR__ast_common/aMsgWindowBgTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMsgWindowBgTLUT[] = "__OTR__ast_common/aMsgWindowBgTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aShieldGaugeTex[] = "__OTR__ast_common/aShieldGaugeTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aShieldGaugeTLUT[] = "__OTR__ast_common/aShieldGaugeTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1013780[] = "__OTR__ast_common/D_1013780";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10151F0[] = "__OTR__ast_common/D_10151F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015320[] = "__OTR__ast_common/D_1015320";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_153B8[] = "__OTR__ast_common/ast_common_seg1_vtx_153B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10153F8[] = "__OTR__ast_common/D_10153F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10154F8[] = "__OTR__ast_common/D_10154F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRadarMarkArwingDL[] = "__OTR__ast_common/aRadarMarkArwingDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15568[] = "__OTR__ast_common/ast_common_seg1_vtx_15568";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRadarMarkArwingTex[] = "__OTR__ast_common/aRadarMarkArwingTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10156A0[] = "__OTR__ast_common/D_10156A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15738[] = "__OTR__ast_common/ast_common_seg1_vtx_15738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015778[] = "__OTR__ast_common/D_1015778";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10157F8[] = "__OTR__ast_common/D_10157F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015810[] = "__OTR__ast_common/D_1015810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_158A8[] = "__OTR__ast_common/ast_common_seg1_vtx_158A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10158E8[] = "__OTR__ast_common/D_10158E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015968[] = "__OTR__ast_common/D_1015968";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015980[] = "__OTR__ast_common/D_1015980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15A18[] = "__OTR__ast_common/ast_common_seg1_vtx_15A18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015A58[] = "__OTR__ast_common/D_1015A58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015B58[] = "__OTR__ast_common/D_1015B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015B70[] = "__OTR__ast_common/D_1015B70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15C08[] = "__OTR__ast_common/ast_common_seg1_vtx_15C08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015C48[] = "__OTR__ast_common/D_1015C48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015CC8[] = "__OTR__ast_common/D_1015CC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015CE0[] = "__OTR__ast_common/D_1015CE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15D78[] = "__OTR__ast_common/ast_common_seg1_vtx_15D78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015DB8[] = "__OTR__ast_common/D_1015DB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015E38[] = "__OTR__ast_common/D_1015E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015E50[] = "__OTR__ast_common/D_1015E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15EE8[] = "__OTR__ast_common/ast_common_seg1_vtx_15EE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015F28[] = "__OTR__ast_common/D_1015F28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015FA8[] = "__OTR__ast_common/D_1015FA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1015FC0[] = "__OTR__ast_common/D_1015FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16058[] = "__OTR__ast_common/ast_common_seg1_vtx_16058";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016098[] = "__OTR__ast_common/D_1016098";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016118[] = "__OTR__ast_common/D_1016118";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016130[] = "__OTR__ast_common/D_1016130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_161C8[] = "__OTR__ast_common/ast_common_seg1_vtx_161C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016208[] = "__OTR__ast_common/D_1016208";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016288[] = "__OTR__ast_common/D_1016288";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10162A0[] = "__OTR__ast_common/D_10162A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16338[] = "__OTR__ast_common/ast_common_seg1_vtx_16338";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016378[] = "__OTR__ast_common/D_1016378";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10163F8[] = "__OTR__ast_common/D_10163F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016410[] = "__OTR__ast_common/D_1016410";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_164A8[] = "__OTR__ast_common/ast_common_seg1_vtx_164A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10164E8[] = "__OTR__ast_common/D_10164E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016568[] = "__OTR__ast_common/D_1016568";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016580[] = "__OTR__ast_common/D_1016580";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16618[] = "__OTR__ast_common/ast_common_seg1_vtx_16618";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016658[] = "__OTR__ast_common/D_1016658";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016858[] = "__OTR__ast_common/D_1016858";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016870[] = "__OTR__ast_common/D_1016870";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16998[] = "__OTR__ast_common/ast_common_seg1_vtx_16998";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16B88[] = "__OTR__ast_common/ast_common_seg1_vtx_16B88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016BC8[] = "__OTR__ast_common/D_1016BC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1016FC8[] = "__OTR__ast_common/D_1016FC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10171D0[] = "__OTR__ast_common/D_10171D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_17268[] = "__OTR__ast_common/ast_common_seg1_vtx_17268";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10172A8[] = "__OTR__ast_common/D_10172A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10173A8[] = "__OTR__ast_common/D_10173A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10173D0[] = "__OTR__ast_common/D_10173D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_17468[] = "__OTR__ast_common/ast_common_seg1_vtx_17468";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10174A8[] = "__OTR__ast_common/D_10174A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10175A8[] = "__OTR__ast_common/D_10175A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10175C0[] = "__OTR__ast_common/D_10175C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_17658[] = "__OTR__ast_common/ast_common_seg1_vtx_17658";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1017698[] = "__OTR__ast_common/D_1017698";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1017798[] = "__OTR__ast_common/D_1017798";
|
||||
|
||||
static const ALIGN_ASSET(2) char aActorSuppliesDL[] = "__OTR__ast_common/aActorSuppliesDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_178B8[] = "__OTR__ast_common/ast_common_seg1_vtx_178B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_179B8[] = "__OTR__ast_common/ast_common_seg1_vtx_179B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_179F8[] = "__OTR__ast_common/ast_common_seg1_vtx_179F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1017A38[] = "__OTR__ast_common/D_1017A38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1018238[] = "__OTR__ast_common/D_1018238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10182C0[] = "__OTR__ast_common/D_10182C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18630[] = "__OTR__ast_common/ast_common_seg1_vtx_18630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18830[] = "__OTR__ast_common/ast_common_seg1_vtx_18830";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18A30[] = "__OTR__ast_common/ast_common_seg1_vtx_18A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18C30[] = "__OTR__ast_common/ast_common_seg1_vtx_18C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18E30[] = "__OTR__ast_common/ast_common_seg1_vtx_18E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19030[] = "__OTR__ast_common/ast_common_seg1_vtx_19030";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10190C0[] = "__OTR__ast_common/D_10190C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10194C0[] = "__OTR__ast_common/D_10194C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19520[] = "__OTR__ast_common/ast_common_seg1_vtx_19520";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1019620[] = "__OTR__ast_common/D_1019620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1019820[] = "__OTR__ast_common/D_1019820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19980[] = "__OTR__ast_common/ast_common_seg1_vtx_19980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19A40[] = "__OTR__ast_common/ast_common_seg1_vtx_19A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1019AF0[] = "__OTR__ast_common/D_1019AF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1019BF0[] = "__OTR__ast_common/D_1019BF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1019CA0[] = "__OTR__ast_common/D_1019CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19E20[] = "__OTR__ast_common/ast_common_seg1_vtx_19E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1A000[] = "__OTR__ast_common/ast_common_seg1_vtx_1A000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101A140[] = "__OTR__ast_common/D_101A140";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101A540[] = "__OTR__ast_common/D_101A540";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101A570[] = "__OTR__ast_common/D_101A570";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1A6A8[] = "__OTR__ast_common/ast_common_seg1_vtx_1A6A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1A8A8[] = "__OTR__ast_common/ast_common_seg1_vtx_1A8A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101A8E0[] = "__OTR__ast_common/D_101A8E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1A978[] = "__OTR__ast_common/ast_common_seg1_vtx_1A978";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101A9B8[] = "__OTR__ast_common/D_101A9B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101ABB8[] = "__OTR__ast_common/D_101ABB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101ABD0[] = "__OTR__ast_common/D_101ABD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1AC38[] = "__OTR__ast_common/ast_common_seg1_vtx_1AC38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101AC98[] = "__OTR__ast_common/D_101AC98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101AD20[] = "__OTR__ast_common/D_101AD20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1AD88[] = "__OTR__ast_common/ast_common_seg1_vtx_1AD88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101AE48[] = "__OTR__ast_common/D_101AE48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101AED0[] = "__OTR__ast_common/D_101AED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1AF38[] = "__OTR__ast_common/ast_common_seg1_vtx_1AF38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101AF98[] = "__OTR__ast_common/D_101AF98";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame12DL[] = "__OTR__ast_common/aGoldRingFrame12DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B238[] = "__OTR__ast_common/ast_common_seg1_vtx_1B238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B268[] = "__OTR__ast_common/D_101B268";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B2E8[] = "__OTR__ast_common/D_101B2E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame11DL[] = "__OTR__ast_common/aGoldRingFrame11DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B3A8[] = "__OTR__ast_common/ast_common_seg1_vtx_1B3A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B3D8[] = "__OTR__ast_common/D_101B3D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B458[] = "__OTR__ast_common/D_101B458";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame10DL[] = "__OTR__ast_common/aGoldRingFrame10DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B518[] = "__OTR__ast_common/ast_common_seg1_vtx_1B518";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B548[] = "__OTR__ast_common/D_101B548";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B5C8[] = "__OTR__ast_common/D_101B5C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame9DL[] = "__OTR__ast_common/aGoldRingFrame9DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B688[] = "__OTR__ast_common/ast_common_seg1_vtx_1B688";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B6B8[] = "__OTR__ast_common/D_101B6B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B738[] = "__OTR__ast_common/D_101B738";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame8DL[] = "__OTR__ast_common/aGoldRingFrame8DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B7F8[] = "__OTR__ast_common/ast_common_seg1_vtx_1B7F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B828[] = "__OTR__ast_common/D_101B828";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B8A8[] = "__OTR__ast_common/D_101B8A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame7DL[] = "__OTR__ast_common/aGoldRingFrame7DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B968[] = "__OTR__ast_common/ast_common_seg1_vtx_1B968";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101B998[] = "__OTR__ast_common/D_101B998";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BA18[] = "__OTR__ast_common/D_101BA18";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame6DL[] = "__OTR__ast_common/aGoldRingFrame6DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1BAD8[] = "__OTR__ast_common/ast_common_seg1_vtx_1BAD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BB08[] = "__OTR__ast_common/D_101BB08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BB88[] = "__OTR__ast_common/D_101BB88";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame5DL[] = "__OTR__ast_common/aGoldRingFrame5DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1BC48[] = "__OTR__ast_common/ast_common_seg1_vtx_1BC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BC78[] = "__OTR__ast_common/D_101BC78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BCF8[] = "__OTR__ast_common/D_101BCF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame4DL[] = "__OTR__ast_common/aGoldRingFrame4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1BDB8[] = "__OTR__ast_common/ast_common_seg1_vtx_1BDB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BDE8[] = "__OTR__ast_common/D_101BDE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BE68[] = "__OTR__ast_common/D_101BE68";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame3DL[] = "__OTR__ast_common/aGoldRingFrame3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1BF28[] = "__OTR__ast_common/ast_common_seg1_vtx_1BF28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BF58[] = "__OTR__ast_common/D_101BF58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101BFD8[] = "__OTR__ast_common/D_101BFD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame2DL[] = "__OTR__ast_common/aGoldRingFrame2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1C098[] = "__OTR__ast_common/ast_common_seg1_vtx_1C098";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101C0C8[] = "__OTR__ast_common/D_101C0C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101C148[] = "__OTR__ast_common/D_101C148";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGoldRingFrame1DL[] = "__OTR__ast_common/aGoldRingFrame1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1C208[] = "__OTR__ast_common/ast_common_seg1_vtx_1C208";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101C238[] = "__OTR__ast_common/D_101C238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101C2B8[] = "__OTR__ast_common/D_101C2B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStarDL[] = "__OTR__ast_common/aStarDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1C338[] = "__OTR__ast_common/ast_common_seg1_vtx_1C338";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStarTex[] = "__OTR__ast_common/aStarTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101C770[] = "__OTR__ast_common/D_101C770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1C860[] = "__OTR__ast_common/ast_common_seg1_vtx_1C860";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101C920[] = "__OTR__ast_common/D_101C920";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101CA20[] = "__OTR__ast_common/D_101CA20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101CAE0[] = "__OTR__ast_common/D_101CAE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1CB80[] = "__OTR__ast_common/ast_common_seg1_vtx_1CB80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101CBC0[] = "__OTR__ast_common/D_101CBC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101CCC0[] = "__OTR__ast_common/D_101CCC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aUnusedShieldDL[] = "__OTR__ast_common/aUnusedShieldDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1CE80[] = "__OTR__ast_common/ast_common_seg1_vtx_1CE80";
|
||||
|
||||
static const ALIGN_ASSET(2) char aUnusedShieldTex[] = "__OTR__ast_common/aUnusedShieldTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101D870[] = "__OTR__ast_common/D_101D870";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1D9C8[] = "__OTR__ast_common/ast_common_seg1_vtx_1D9C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBarrelRollTex[] = "__OTR__ast_common/aBarrelRollTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1DD20[] = "__OTR__ast_common/ast_common_seg1_vtx_1DD20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101DE20[] = "__OTR__ast_common/D_101DE20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101EE20[] = "__OTR__ast_common/D_101EE20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_101FE20[] = "__OTR__ast_common/D_101FE20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1020E20[] = "__OTR__ast_common/D_1020E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1021E20[] = "__OTR__ast_common/D_1021E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_21EB8[] = "__OTR__ast_common/ast_common_seg1_vtx_21EB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1021EF8[] = "__OTR__ast_common/D_1021EF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10220F8[] = "__OTR__ast_common/D_10220F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1022120[] = "__OTR__ast_common/D_1022120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_22480[] = "__OTR__ast_common/ast_common_seg1_vtx_22480";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1022C40[] = "__OTR__ast_common/D_1022C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1022CC0[] = "__OTR__ast_common/D_1022CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1022CE0[] = "__OTR__ast_common/D_1022CE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1022D60[] = "__OTR__ast_common/D_1022D60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1022D80[] = "__OTR__ast_common/D_1022D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1022E80[] = "__OTR__ast_common/D_1022E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_22F20[] = "__OTR__ast_common/ast_common_seg1_vtx_22F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1022F80[] = "__OTR__ast_common/D_1022F80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023180[] = "__OTR__ast_common/D_1023180";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10231A0[] = "__OTR__ast_common/D_10231A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23288[] = "__OTR__ast_common/ast_common_seg1_vtx_23288";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23468[] = "__OTR__ast_common/ast_common_seg1_vtx_23468";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023518[] = "__OTR__ast_common/D_1023518";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023530[] = "__OTR__ast_common/D_1023530";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023630[] = "__OTR__ast_common/D_1023630";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023700[] = "__OTR__ast_common/D_1023700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23718[] = "__OTR__ast_common/ast_common_seg1_vtx_23718";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023750[] = "__OTR__ast_common/D_1023750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_237A8[] = "__OTR__ast_common/ast_common_seg1_vtx_237A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10237E0[] = "__OTR__ast_common/D_10237E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23838[] = "__OTR__ast_common/ast_common_seg1_vtx_23838";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023878[] = "__OTR__ast_common/D_1023878";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023C80[] = "__OTR__ast_common/D_1023C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23D90[] = "__OTR__ast_common/ast_common_seg1_vtx_23D90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23DD0[] = "__OTR__ast_common/ast_common_seg1_vtx_23DD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1023E10[] = "__OTR__ast_common/D_1023E10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024010[] = "__OTR__ast_common/D_1024010";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024020[] = "__OTR__ast_common/D_1024020";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024220[] = "__OTR__ast_common/D_1024220";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024230[] = "__OTR__ast_common/D_1024230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24248[] = "__OTR__ast_common/ast_common_seg1_vtx_24248";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024290[] = "__OTR__ast_common/D_1024290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_242F0[] = "__OTR__ast_common/ast_common_seg1_vtx_242F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aPeppyMarkDL[] = "__OTR__ast_common/aPeppyMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_244A8[] = "__OTR__ast_common/ast_common_seg1_vtx_244A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aPeppyMarkTex[] = "__OTR__ast_common/aPeppyMarkTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aPeppyMarkTLUT[] = "__OTR__ast_common/aPeppyMarkTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFalcoMarkDL[] = "__OTR__ast_common/aFalcoMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24608[] = "__OTR__ast_common/ast_common_seg1_vtx_24608";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFalcoMarkTex[] = "__OTR__ast_common/aFalcoMarkTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFalcoMarkTLUT[] = "__OTR__ast_common/aFalcoMarkTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSlippyMarkDL[] = "__OTR__ast_common/aSlippyMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24768[] = "__OTR__ast_common/ast_common_seg1_vtx_24768";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSlippyMarkTex[] = "__OTR__ast_common/aSlippyMarkTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSlippyMarkTLUT[] = "__OTR__ast_common/aSlippyMarkTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRadarMarkBossDL[] = "__OTR__ast_common/aRadarMarkBossDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_248C8[] = "__OTR__ast_common/ast_common_seg1_vtx_248C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10248F8[] = "__OTR__ast_common/D_10248F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024978[] = "__OTR__ast_common/D_1024978";
|
||||
|
||||
static const ALIGN_ASSET(2) char aArrowDL[] = "__OTR__ast_common/aArrowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24A28[] = "__OTR__ast_common/ast_common_seg1_vtx_24A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024A58[] = "__OTR__ast_common/D_1024A58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024A98[] = "__OTR__ast_common/D_1024A98";
|
||||
|
||||
static const ALIGN_ASSET(2) char aOrbDL[] = "__OTR__ast_common/aOrbDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24B18[] = "__OTR__ast_common/ast_common_seg1_vtx_24B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024B58[] = "__OTR__ast_common/D_1024B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024F60[] = "__OTR__ast_common/D_1024F60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24FB8[] = "__OTR__ast_common/ast_common_seg1_vtx_24FB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1024FF8[] = "__OTR__ast_common/D_1024FF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1025800[] = "__OTR__ast_common/D_1025800";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_25858[] = "__OTR__ast_common/ast_common_seg1_vtx_25858";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1025888[] = "__OTR__ast_common/D_1025888";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1026090[] = "__OTR__ast_common/D_1026090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_260E8[] = "__OTR__ast_common/ast_common_seg1_vtx_260E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1026120[] = "__OTR__ast_common/D_1026120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_261B0[] = "__OTR__ast_common/ast_common_seg1_vtx_261B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_261F0[] = "__OTR__ast_common/ast_common_seg1_vtx_261F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1026230[] = "__OTR__ast_common/D_1026230";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1027230[] = "__OTR__ast_common/D_1027230";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1028230[] = "__OTR__ast_common/D_1028230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_283C8[] = "__OTR__ast_common/ast_common_seg1_vtx_283C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28508[] = "__OTR__ast_common/ast_common_seg1_vtx_28508";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28608[] = "__OTR__ast_common/ast_common_seg1_vtx_28608";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28748[] = "__OTR__ast_common/ast_common_seg1_vtx_28748";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_10288D8[] = "__OTR__ast_common/D_10288D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1028AD8[] = "__OTR__ast_common/D_1028AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1028B58[] = "__OTR__ast_common/D_1028B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1028D58[] = "__OTR__ast_common/D_1028D58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1028DE0[] = "__OTR__ast_common/D_1028DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28E38[] = "__OTR__ast_common/ast_common_seg1_vtx_28E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1028E68[] = "__OTR__ast_common/D_1028E68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1028EF0[] = "__OTR__ast_common/D_1028EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28F48[] = "__OTR__ast_common/ast_common_seg1_vtx_28F48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1028F78[] = "__OTR__ast_common/D_1028F78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1029780[] = "__OTR__ast_common/D_1029780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_297D8[] = "__OTR__ast_common/ast_common_seg1_vtx_297D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1029808[] = "__OTR__ast_common/D_1029808";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102A010[] = "__OTR__ast_common/D_102A010";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2A068[] = "__OTR__ast_common/ast_common_seg1_vtx_2A068";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102A098[] = "__OTR__ast_common/D_102A098";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRadarMarkKaSaucererDL[] = "__OTR__ast_common/aRadarMarkKaSaucererDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2A8F8[] = "__OTR__ast_common/ast_common_seg1_vtx_2A8F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102A928[] = "__OTR__ast_common/D_102A928";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102AB30[] = "__OTR__ast_common/D_102AB30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2ABC0[] = "__OTR__ast_common/ast_common_seg1_vtx_2ABC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2AC00[] = "__OTR__ast_common/ast_common_seg1_vtx_2AC00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102AC40[] = "__OTR__ast_common/D_102AC40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102BC40[] = "__OTR__ast_common/D_102BC40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102CC40[] = "__OTR__ast_common/D_102CC40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2CCD0[] = "__OTR__ast_common/ast_common_seg1_vtx_2CCD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2CD10[] = "__OTR__ast_common/ast_common_seg1_vtx_2CD10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102CD50[] = "__OTR__ast_common/D_102CD50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102DD50[] = "__OTR__ast_common/D_102DD50";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBlueSphereDL[] = "__OTR__ast_common/aBlueSphereDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2EDA8[] = "__OTR__ast_common/ast_common_seg1_vtx_2EDA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102EDD8[] = "__OTR__ast_common/D_102EDD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102F5E0[] = "__OTR__ast_common/D_102F5E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2F638[] = "__OTR__ast_common/ast_common_seg1_vtx_2F638";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102F678[] = "__OTR__ast_common/D_102F678";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102FE80[] = "__OTR__ast_common/D_102FE80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2FED8[] = "__OTR__ast_common/ast_common_seg1_vtx_2FED8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102FF08[] = "__OTR__ast_common/D_102FF08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_102FF90[] = "__OTR__ast_common/D_102FF90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_301C8[] = "__OTR__ast_common/ast_common_seg1_vtx_301C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_303C8[] = "__OTR__ast_common/ast_common_seg1_vtx_303C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_305B8[] = "__OTR__ast_common/ast_common_seg1_vtx_305B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30798[] = "__OTR__ast_common/ast_common_seg1_vtx_30798";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30998[] = "__OTR__ast_common/ast_common_seg1_vtx_30998";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30B78[] = "__OTR__ast_common/ast_common_seg1_vtx_30B78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30D78[] = "__OTR__ast_common/ast_common_seg1_vtx_30D78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30F68[] = "__OTR__ast_common/ast_common_seg1_vtx_30F68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_31168[] = "__OTR__ast_common/ast_common_seg1_vtx_31168";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1031228[] = "__OTR__ast_common/D_1031228";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1031630[] = "__OTR__ast_common/D_1031630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_317D0[] = "__OTR__ast_common/ast_common_seg1_vtx_317D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_319D0[] = "__OTR__ast_common/ast_common_seg1_vtx_319D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_31BD0[] = "__OTR__ast_common/ast_common_seg1_vtx_31BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1031CC0[] = "__OTR__ast_common/D_1031CC08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1031EC0[] = "__OTR__ast_common/D_1031EC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_31FE8[] = "__OTR__ast_common/ast_common_seg1_vtx_31FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_321E8[] = "__OTR__ast_common/ast_common_seg1_vtx_321E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_323E8[] = "__OTR__ast_common/ast_common_seg1_vtx_323E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1032578[] = "__OTR__ast_common/D_1032578";
|
||||
|
||||
static const ALIGN_ASSET(2) char aArwingShadowDL[] = "__OTR__ast_common/aArwingShadowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_common_seg1_vtx_327D8[] = "__OTR__ast_common/ast_common_seg1_vtx_327D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_1032808[] = "__OTR__ast_common/D_1032808";
|
||||
|
964
include/assets/ast_corneria.h
Normal file
964
include/assets/ast_corneria.h
Normal file
@ -0,0 +1,964 @@
|
||||
#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 aCoTitleCardTex[] = "__OTR__ast_corneria/aCoTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoWaterfallDL[] = "__OTR__ast_corneria/aCoWaterfallDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_FF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_FF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_11F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_11F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1698[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1878[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1878";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60018F8[] = "__OTR__ast_corneria/D_CO_60018F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60020F8[] = "__OTR__ast_corneria/D_CO_60020F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60028F8[] = "__OTR__ast_corneria/D_CO_60028F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60038F8[] = "__OTR__ast_corneria/D_CO_60038F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60040F8[] = "__OTR__ast_corneria/D_CO_60040F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6004900[] = "__OTR__ast_corneria/D_CO_6004900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_4970[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_4970";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60049F0[] = "__OTR__ast_corneria/D_CO_60049F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60059F0[] = "__OTR__ast_corneria/D_CO_60059F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_5A40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_5A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6005A80[] = "__OTR__ast_corneria/D_CO_6005A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoArch3DL[] = "__OTR__ast_corneria/aCoArch3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_6BC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_6BC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_6CC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_6CC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_6D88[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_6D88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_6DC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_6DC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6006E08[] = "__OTR__ast_corneria/D_CO_6006E08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6007610[] = "__OTR__ast_corneria/D_CO_6007610";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7C88[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7C88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7CC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7CC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7D08[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7ED8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7ED8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7FF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7FF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_81D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_81D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8268[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8268";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_82E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_82E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8488[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8488";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8658[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8658";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8858[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8858";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8A48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8A48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8C48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8C48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8CC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8CC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8D48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8D48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8E48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8E48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_9028[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_9028";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_9068[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_9068";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_90A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_90A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_9188[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_9188";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60091C8[] = "__OTR__ast_corneria/D_CO_60091C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60099C8[] = "__OTR__ast_corneria/D_CO_60099C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6009BC8[] = "__OTR__ast_corneria/D_CO_6009BC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600A3C8[] = "__OTR__ast_corneria/D_CO_600A3C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600ABC8[] = "__OTR__ast_corneria/D_CO_600ABC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600B3C8[] = "__OTR__ast_corneria/D_CO_600B3C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_BBD0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_BBD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_BE68[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_BE68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_BF68[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_BF68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C138[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C138";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C1F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C1F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C278[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C278";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C358[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C358";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C398[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C398";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600C3D8[] = "__OTR__ast_corneria/D_CO_600C3D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600CBD8[] = "__OTR__ast_corneria/D_CO_600CBD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600DBD8[] = "__OTR__ast_corneria/D_CO_600DBD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600E3D8[] = "__OTR__ast_corneria/D_CO_600E3D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600EBD8[] = "__OTR__ast_corneria/D_CO_600EBD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_600F3D8[] = "__OTR__ast_corneria/D_CO_600F3D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_FBE0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_FBE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_FD40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_FD40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_FE40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_FE40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_FFD0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_FFD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10010[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10010";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6010050[] = "__OTR__ast_corneria/D_CO_6010050";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6010250[] = "__OTR__ast_corneria/D_CO_6010250";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway7DL[] = "__OTR__ast_corneria/aCoHighway7DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10BB8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10BB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10BF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10BF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10C38[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10C38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10C78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10C78";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway5DL[] = "__OTR__ast_corneria/aCoHighway5DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10EB0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10EB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10F50[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10F50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6010F90[] = "__OTR__ast_corneria/D_CO_6010F90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6011790[] = "__OTR__ast_corneria/D_CO_6011790";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoCornerianFighterDL[] = "__OTR__ast_corneria/aCoCornerianFighterDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12120[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12310[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12310";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12370[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12370";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12560[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_125C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_125C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12610[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12610";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6012640[] = "__OTR__ast_corneria/D_CO_6012640";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6012840[] = "__OTR__ast_corneria/D_CO_6012840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_12A40[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_12A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12AC0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_12BA0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_12BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12C20[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12C20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6012D00[] = "__OTR__ast_corneria/D_CO_6012D00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_12F00[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_12F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13070[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13070";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_130F0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_130F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_131B0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_131B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_131F0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_131F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway1DL[] = "__OTR__ast_corneria/aCoHighway1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_133F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_133F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13478[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13478";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13678[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13678";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_136A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_136A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoArch2DL[] = "__OTR__ast_corneria/aCoArch2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13860[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13860";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13A40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoRockwallDL[] = "__OTR__ast_corneria/aCoRockwallDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13BA0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6013BE0[] = "__OTR__ast_corneria/D_CO_6013BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway8DL[] = "__OTR__ast_corneria/aCoHighway8DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14450[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14450";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway4DL[] = "__OTR__ast_corneria/aCoHighway4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14568[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14568";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway6DL[] = "__OTR__ast_corneria/aCoHighway6DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_147D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_147D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14958[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14958";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14998[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14998";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_149D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_149D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway9DL[] = "__OTR__ast_corneria/aCoHighway9DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14A90[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding3DL[] = "__OTR__ast_corneria/aCoBuilding3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14D68[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14E28[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14E28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14E68[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14E68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14F48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14F48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14FC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14FC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_150A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_150A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60151A8[] = "__OTR__ast_corneria/D_CO_60151A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoTowerDL[] = "__OTR__ast_corneria/aCoTowerDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_15480[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_15480";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_15600[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_15600";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6015700[] = "__OTR__ast_corneria/D_CO_6015700";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoStoneArchDL[] = "__OTR__ast_corneria/aCoStoneArchDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_15FC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_15FC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_161C8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_161C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRadarDL[] = "__OTR__ast_corneria/aRadarDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16350[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_163F0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_163F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway3DL[] = "__OTR__ast_corneria/aCoHighway3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16540[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16540";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding4DL[] = "__OTR__ast_corneria/aCoBuilding4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16660[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16720[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16720";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_168D0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_168D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16AC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16AC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16B88[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16B88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16D08[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16F08[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16F08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16F98[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16F98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_170E0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_170E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17290[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17480[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17480";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17540[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17540";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17580[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17580";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_175C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_175C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_176C0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_176C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17908[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17908";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17948[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17948";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17B48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17BA8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17BA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17CA8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17DA8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17DA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6017F10[] = "__OTR__ast_corneria/D_CO_6017F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_180F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_180F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18158[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_182B8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_182B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_183F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_183F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_185F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_185F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60186E0[] = "__OTR__ast_corneria/D_CO_60186E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_188D0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_188D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18930[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18930";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18A80[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18BE0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18DE0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding7DL[] = "__OTR__ast_corneria/aCoBuilding7DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19008[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19008";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19088[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19088";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_190E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_190E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19168[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19168";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19198[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19198";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60191C8[] = "__OTR__ast_corneria/D_CO_60191C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60199D0[] = "__OTR__ast_corneria/D_CO_60199D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19A90[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19B60[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19B60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6019C60[] = "__OTR__ast_corneria/D_CO_6019C60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6019E60[] = "__OTR__ast_corneria/D_CO_6019E60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_1A660[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_1A660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1A710[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1A710";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1A790[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1A790";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding2DL[] = "__OTR__ast_corneria/aCoBuilding2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1A920[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1A920";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1AB10[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1AB10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1AB50[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1AB50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1ABD0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1ABD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601AD60[] = "__OTR__ast_corneria/D_CO_601AD60";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding5DL[] = "__OTR__ast_corneria/aCoBuilding5DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1B5B8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1B5B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601B640[] = "__OTR__ast_corneria/D_CO_601B640";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1B660[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1B660";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601B6C0[] = "__OTR__ast_corneria/D_CO_601B6C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBump2DL[] = "__OTR__ast_corneria/aCoBump2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1BF78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1BF78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1C178[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1C178";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601C1A8[] = "__OTR__ast_corneria/D_CO_601C1A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoTreeDL[] = "__OTR__ast_corneria/aCoTreeDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1CA40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1CA40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1CA70[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1CA70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601CAA0[] = "__OTR__ast_corneria/D_CO_601CAA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601DAA0[] = "__OTR__ast_corneria/D_CO_601DAA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601EAA0[] = "__OTR__ast_corneria/D_CO_601EAA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1EB70[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1EB70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601ED00[] = "__OTR__ast_corneria/D_CO_601ED00";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoRuin2DL[] = "__OTR__ast_corneria/aCoRuin2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F558[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F558";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoArch1DL[] = "__OTR__ast_corneria/aCoArch1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F740[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F740";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F780[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F800[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F800";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F880[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F900[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_1F980[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_1F980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1FAE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1FAE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1FCE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1FCE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1FDD8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1FDD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1FF18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1FF18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_601FF58[] = "__OTR__ast_corneria/D_CO_601FF58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6020760[] = "__OTR__ast_corneria/D_CO_6020760";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_20810[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_20810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_209F0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_209F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoRadarDL[] = "__OTR__ast_corneria/aCoRadarDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_20CB8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_20CB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_20E18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_20E18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21008[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21008";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_210C8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_210C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6021188[] = "__OTR__ast_corneria/D_CO_6021188";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_21390[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_21390";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_216D0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_216D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_218B0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_218B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21A20[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21AA0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21AA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21B20[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21B20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21CC0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21D80[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21F80[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21F80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22000[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22090[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22090";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60220D0[] = "__OTR__ast_corneria/D_CO_60220D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_228D0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_228D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22980[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22AC0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_22B00[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_22B00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22BF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22BF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22C78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22C78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22CF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22CF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_22D40[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_22D40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22E38[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22EB8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22EB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22F38[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_22F80[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_22F80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23120[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23160[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23160";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23320[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23320";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_23420[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_23420";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23610[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23610";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_237C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_237C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_238C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_238C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23A40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoIBeamDL[] = "__OTR__ast_corneria/aCoIBeamDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23BA8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23BA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23D28[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23D28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6023DE8[] = "__OTR__ast_corneria/D_CO_6023DE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_23FF0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_23FF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_240A0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_240A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_24120[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_24120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6024160[] = "__OTR__ast_corneria/D_CO_6024160";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_24230[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_24230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_24420[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_24420";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBump4DL[] = "__OTR__ast_corneria/aCoBump4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_24528[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_24528";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60245E0[] = "__OTR__ast_corneria/D_CO_60245E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6025500[] = "__OTR__ast_corneria/D_CO_6025500";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6026420[] = "__OTR__ast_corneria/D_CO_6026420";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6027340[] = "__OTR__ast_corneria/D_CO_6027340";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6028260[] = "__OTR__ast_corneria/D_CO_6028260";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6028A60[] = "__OTR__ast_corneria/D_CO_6028A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoSkibotAnim[] = "__OTR__ast_corneria/aCoSkibotAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoSkibotSkel[] = "__OTR__ast_corneria/aCoSkibotSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGaruda1Anim[] = "__OTR__ast_corneria/aCoGaruda1Anim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGarudaSkel[] = "__OTR__ast_corneria/aCoGarudaSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGaruda3Anim[] = "__OTR__ast_corneria/aCoGaruda3Anim";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_602AA04[] = "__OTR__ast_corneria/D_CO_602AA04";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoDoorsAnim[] = "__OTR__ast_corneria/aCoDoorsAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoDoorsSkel[] = "__OTR__ast_corneria/aCoDoorsSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGrangaWalkingAnim[] = "__OTR__ast_corneria/aCoGrangaWalkingAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGrangaSkel[] = "__OTR__ast_corneria/aCoGrangaSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGrangaStationaryAnim[] = "__OTR__ast_corneria/aCoGrangaStationaryAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_602D31C[] = "__OTR__ast_corneria/D_CO_602D31C";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoCarrierAnim[] = "__OTR__ast_corneria/aCoCarrierAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoCarrierSkel[] = "__OTR__ast_corneria/aCoCarrierSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding1DL[] = "__OTR__ast_corneria/aCoBuilding1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2D768[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2D768";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2D7E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2D7E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2D8A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2D8A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2D9A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2D9A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding9DL[] = "__OTR__ast_corneria/aCoBuilding9DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DB18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DB18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DC18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DC18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DC58[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DC58";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoRuin1DL[] = "__OTR__ast_corneria/aCoRuin1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DCF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DCF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_602DD40[] = "__OTR__ast_corneria/D_CO_602DD40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DE08[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DE08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DFF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DFF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway2DL[] = "__OTR__ast_corneria/aCoHighway2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E1C8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E1C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E248[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E248";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E438[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E438";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E468[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E468";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBump5DL[] = "__OTR__ast_corneria/aCoBump5DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E5F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E5F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBump3DL[] = "__OTR__ast_corneria/aCoBump3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E828[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E828";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBump1DL[] = "__OTR__ast_corneria/aCoBump1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2EA78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2EA78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2EC78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2EC78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_602ECB0[] = "__OTR__ast_corneria/D_CO_602ECB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2ED10[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2ED10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_602ED50[] = "__OTR__ast_corneria/D_CO_602ED50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_2EE50[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_2EE50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2EEC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2EEC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_2F010[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_2F010";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F0A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F0A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F298[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_2F300[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_2F300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F378[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F378";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_2F4C0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_2F4C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F558[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F558";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F758[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F758";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoPoleDL[] = "__OTR__ast_corneria/aCoPoleDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F818[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F818";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_602F848[] = "__OTR__ast_corneria/D_CO_602F848";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6030850[] = "__OTR__ast_corneria/D_CO_6030850";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_309E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_309E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_30B28[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_30B28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_30BE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_30BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_30DD8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_30DD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6030FD0[] = "__OTR__ast_corneria/D_CO_6030FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31040[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31040";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6031130[] = "__OTR__ast_corneria/D_CO_6031130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_311A0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_311A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6031280[] = "__OTR__ast_corneria/D_CO_6031280";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31420[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31420";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31560[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31620[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31620";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31820[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_319C0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_319C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31B30[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31CC0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31D00[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31D00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31E80[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_31ED0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_31ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32150[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32150";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32350[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_323C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_323C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_324C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_324C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_325B0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_325B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_326C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_326C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_328C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_328C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGarudaTracksTex[] = "__OTR__ast_corneria/aCoGarudaTracksTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char CoMoleMissileDL[] = "__OTR__ast_corneria/CoMoleMissileDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32CE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32CE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32E38[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32F18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32F18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6033000[] = "__OTR__ast_corneria/D_CO_6033000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33058[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33058";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6033088[] = "__OTR__ast_corneria/D_CO_6033088";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6033290[] = "__OTR__ast_corneria/D_CO_6033290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33350[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33440[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33440";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_33540[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_33540";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_336D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_336D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33848[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33848";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33998[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33998";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33A98[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33A98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6033AF0[] = "__OTR__ast_corneria/D_CO_6033AF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33BB0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33BB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33CB0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33CB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_33DB0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_33DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33F48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33F48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_340E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_340E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_34248[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_34248";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_34338[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_34338";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6034388[] = "__OTR__ast_corneria/D_CO_6034388";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoShadow1DL[] = "__OTR__ast_corneria/aCoShadow1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_34BE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_34BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6034C28[] = "__OTR__ast_corneria/D_CO_6034C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6035430[] = "__OTR__ast_corneria/D_CO_6035430";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35490[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35490";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60354F0[] = "__OTR__ast_corneria/D_CO_60354F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35550[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35550";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60355A0[] = "__OTR__ast_corneria/D_CO_60355A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding10DL[] = "__OTR__ast_corneria/aCoBuilding10DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35E50[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35ED0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding8DL[] = "__OTR__ast_corneria/aCoBuilding8DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35FE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_360E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_360E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding6DL[] = "__OTR__ast_corneria/aCoBuilding6DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_362E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_362E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36328[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36328";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36368[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36368";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60363B0[] = "__OTR__ast_corneria/D_CO_60363B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36408[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36408";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6036438[] = "__OTR__ast_corneria/D_CO_6036438";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6036840[] = "__OTR__ast_corneria/D_CO_6036840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36898[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36898";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_60368C8[] = "__OTR__ast_corneria/D_CO_60368C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6036CD0[] = "__OTR__ast_corneria/D_CO_6036CD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36D28[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36D28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6036D58[] = "__OTR__ast_corneria/D_CO_6036D58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_6037160[] = "__OTR__ast_corneria/D_CO_6037160";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoOnRailsLevelObjects[] = "__OTR__ast_corneria/aCoOnRailsLevelObjects";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoAllRangeLevelObjects[] = "__OTR__ast_corneria/aCoAllRangeLevelObjects";
|
||||
|
||||
static const char D_CO_603D9E8[] = "__OTR__ast_corneria/D_CO_603D9E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603DC40[] = "__OTR__ast_corneria/D_CO_603DC40";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway1Hitbox[] = "__OTR__ast_corneria/aCoHighway1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway2Hitbox[] = "__OTR__ast_corneria/aCoHighway2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding1Hitbox[] = "__OTR__ast_corneria/aCoBuilding1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding2Hitbox[] = "__OTR__ast_corneria/aCoBuilding2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding3Hitbox[] = "__OTR__ast_corneria/aCoBuilding3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding4Hitbox[] = "__OTR__ast_corneria/aCoBuilding4Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding5Hitbox[] = "__OTR__ast_corneria/aCoBuilding5Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding6Hitbox[] = "__OTR__ast_corneria/aCoBuilding6Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding7Hitbox[] = "__OTR__ast_corneria/aCoBuilding7Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding8Hitbox[] = "__OTR__ast_corneria/aCoBuilding8Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoWaterfallHitbox[] = "__OTR__ast_corneria/aCoWaterfallHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoTowerHitbox[] = "__OTR__ast_corneria/aCoTowerHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoArch1Hitbox[] = "__OTR__ast_corneria/aCoArch1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoArch2Hitbox[] = "__OTR__ast_corneria/aCoArch2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoArch3Hitbox[] = "__OTR__ast_corneria/aCoArch3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603E2C0[] = "__OTR__ast_corneria/D_CO_603E2C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603E2F4[] = "__OTR__ast_corneria/D_CO_603E2F4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoStoneArchHitbox[] = "__OTR__ast_corneria/aCoStoneArchHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoPoleHitbox[] = "__OTR__ast_corneria/aCoPoleHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoTreeHitbox[] = "__OTR__ast_corneria/aCoTreeHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoRadarHitbox[] = "__OTR__ast_corneria/aCoRadarHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding9Hitbox[] = "__OTR__ast_corneria/aCoBuilding9Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuilding10Hitbox[] = "__OTR__ast_corneria/aCoBuilding10Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoIBeamHitbox[] = "__OTR__ast_corneria/aCoIBeamHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoActorSkibotHitbox[] = "__OTR__ast_corneria/aCoActorSkibotHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoActorRadarHitbox[] = "__OTR__ast_corneria/aCoActorRadarHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoMoleMissileHitbox[] = "__OTR__ast_corneria/aCoMoleMissileHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char CoGarudaHitbox[] = "__OTR__ast_corneria/CoGarudaHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGarudaDestroyHitbox[] = "__OTR__ast_corneria/aCoGarudaDestroyHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoGrangaHitbox[] = "__OTR__ast_corneria/aCoGrangaHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoCarrierLeftHitbox[] = "__OTR__ast_corneria/aCoCarrierLeftHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoCarrierUpperHitbox[] = "__OTR__ast_corneria/aCoCarrierUpperHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoCarrierBottomHitbox[] = "__OTR__ast_corneria/aCoCarrierBottomHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoCarrierHitbox[] = "__OTR__ast_corneria/aCoCarrierHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoRockwallHitbox[] = "__OTR__ast_corneria/aCoRockwallHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoDoorsHitbox[] = "__OTR__ast_corneria/aCoDoorsHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603E924[] = "__OTR__ast_corneria/D_CO_603E924";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoBuildingOnFireHitbox[] = "__OTR__ast_corneria/aCoBuildingOnFireHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway5Hitbox[] = "__OTR__ast_corneria/aCoHighway5Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway6Hitbox[] = "__OTR__ast_corneria/aCoHighway6Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway7Hitbox[] = "__OTR__ast_corneria/aCoHighway7Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway8Hitbox[] = "__OTR__ast_corneria/aCoHighway8Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCoHighway9Hitbox[] = "__OTR__ast_corneria/aCoHighway9Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603EB38[] = "__OTR__ast_corneria/D_CO_603EB38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603F338[] = "__OTR__ast_corneria/D_CO_603F338";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603F388[] = "__OTR__ast_corneria/D_CO_603F388";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603F40C[] = "__OTR__ast_corneria/D_CO_603F40C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_CO_603F4E4[] = "__OTR__ast_corneria/D_CO_603F4E4";
|
||||
|
241
include/assets/ast_ending.h
Normal file
241
include/assets/ast_ending.h
Normal file
@ -0,0 +1,241 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7000000[] = "__OTR__ast_ending/D_END_7000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_98[] = "__OTR__ast_ending/ast_ending_seg7_vtx_98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_D8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7000118[] = "__OTR__ast_ending/D_END_7000118";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7001118[] = "__OTR__ast_ending/D_END_7001118";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7002120[] = "__OTR__ast_ending/D_END_7002120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_21B8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_21B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_21F8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_21F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7002238[] = "__OTR__ast_ending/D_END_7002238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7003238[] = "__OTR__ast_ending/D_END_7003238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7004240[] = "__OTR__ast_ending/D_END_7004240";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_4420[] = "__OTR__ast_ending/ast_ending_seg7_vtx_4420";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_4460[] = "__OTR__ast_ending/ast_ending_seg7_vtx_4460";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_44A0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_44A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_44E0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_44E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_4520[] = "__OTR__ast_ending/ast_ending_seg7_vtx_4520";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_4560[] = "__OTR__ast_ending/ast_ending_seg7_vtx_4560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_45A0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_45A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_45E0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_45E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7004620[] = "__OTR__ast_ending/D_END_7004620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7005620[] = "__OTR__ast_ending/D_END_7005620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7006620[] = "__OTR__ast_ending/D_END_7006620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7007620[] = "__OTR__ast_ending/D_END_7007620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7008620[] = "__OTR__ast_ending/D_END_7008620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7009620[] = "__OTR__ast_ending/D_END_7009620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700A620[] = "__OTR__ast_ending/D_END_700A620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700B620[] = "__OTR__ast_ending/D_END_700B620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700C620[] = "__OTR__ast_ending/D_END_700C620";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_C678[] = "__OTR__ast_ending/ast_ending_seg7_vtx_C678";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700C6A8[] = "__OTR__ast_ending/D_END_700C6A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700C8B0[] = "__OTR__ast_ending/D_END_700C8B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_C900[] = "__OTR__ast_ending/ast_ending_seg7_vtx_C900";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700C940[] = "__OTR__ast_ending/D_END_700C940";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700D940[] = "__OTR__ast_ending/D_END_700D940";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_D998[] = "__OTR__ast_ending/ast_ending_seg7_vtx_D998";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700D9D8[] = "__OTR__ast_ending/D_END_700D9D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700E9E0[] = "__OTR__ast_ending/D_END_700E9E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_E9F8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_E9F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700EA38[] = "__OTR__ast_ending/D_END_700EA38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700F240[] = "__OTR__ast_ending/D_END_700F240";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_F298[] = "__OTR__ast_ending/ast_ending_seg7_vtx_F298";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_700F320[] = "__OTR__ast_ending/D_END_700F320";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_F580[] = "__OTR__ast_ending/ast_ending_seg7_vtx_F580";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_F780[] = "__OTR__ast_ending/ast_ending_seg7_vtx_F780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_F880[] = "__OTR__ast_ending/ast_ending_seg7_vtx_F880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_FA60[] = "__OTR__ast_ending/ast_ending_seg7_vtx_FA60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_FC50[] = "__OTR__ast_ending/ast_ending_seg7_vtx_FC50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_FD10[] = "__OTR__ast_ending/ast_ending_seg7_vtx_FD10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_FEF0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_FEF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010070[] = "__OTR__ast_ending/D_END_7010070";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70100F0[] = "__OTR__ast_ending/D_END_70100F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010170[] = "__OTR__ast_ending/D_END_7010170";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010970[] = "__OTR__ast_ending/D_END_7010970";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_109C8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_109C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010A08[] = "__OTR__ast_ending/D_END_7010A08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010E10[] = "__OTR__ast_ending/D_END_7010E10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010EE0[] = "__OTR__ast_ending/D_END_7010EE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010F00[] = "__OTR__ast_ending/D_END_7010F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010FD0[] = "__OTR__ast_ending/D_END_7010FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7010FF0[] = "__OTR__ast_ending/D_END_7010FF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70110C0[] = "__OTR__ast_ending/D_END_70110C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70110E0[] = "__OTR__ast_ending/D_END_70110E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70111B0[] = "__OTR__ast_ending/D_END_70111B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70111D0[] = "__OTR__ast_ending/D_END_70111D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_112D8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_112D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_11338[] = "__OTR__ast_ending/ast_ending_seg7_vtx_11338";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_11378[] = "__OTR__ast_ending/ast_ending_seg7_vtx_11378";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70113B8[] = "__OTR__ast_ending/D_END_70113B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70123B8[] = "__OTR__ast_ending/D_END_70123B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70133B8[] = "__OTR__ast_ending/D_END_70133B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70143C0[] = "__OTR__ast_ending/D_END_70143C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_14470[] = "__OTR__ast_ending/ast_ending_seg7_vtx_14470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_144B0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_144B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7014540[] = "__OTR__ast_ending/D_END_7014540";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7015540[] = "__OTR__ast_ending/D_END_7015540";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7016540[] = "__OTR__ast_ending/D_END_7016540";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_165D8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_165D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_16618[] = "__OTR__ast_ending/ast_ending_seg7_vtx_16618";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7016658[] = "__OTR__ast_ending/D_END_7016658";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7017658[] = "__OTR__ast_ending/D_END_7017658";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7018708[] = "__OTR__ast_ending/D_END_7018708";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_70187B4[] = "__OTR__ast_ending/D_END_70187B4";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_gfx_187D0[] = "__OTR__ast_ending/ast_ending_seg7_gfx_187D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_18D10[] = "__OTR__ast_ending/ast_ending_seg7_vtx_18D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_18EF0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_18EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_18F30[] = "__OTR__ast_ending/ast_ending_seg7_vtx_18F30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_18FD0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_18FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_191D0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_191D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_193D0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_193D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_195D0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_195D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_197D0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_197D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_19940[] = "__OTR__ast_ending/ast_ending_seg7_vtx_19940";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_19AE0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_19AE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7019C90[] = "__OTR__ast_ending/D_END_7019C90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7019D10[] = "__OTR__ast_ending/D_END_7019D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7019D90[] = "__OTR__ast_ending/D_END_7019D90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7019E10[] = "__OTR__ast_ending/D_END_7019E10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7019E90[] = "__OTR__ast_ending/D_END_7019E90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7019F10[] = "__OTR__ast_ending/D_END_7019F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_7019F90[] = "__OTR__ast_ending/D_END_7019F90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_END_701A010[] = "__OTR__ast_ending/D_END_701A010";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_gfx_1A090[] = "__OTR__ast_ending/ast_ending_seg7_gfx_1A090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1A698[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1A698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1A878[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1A878";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1AA68[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1AA68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1AC48[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1AC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1ADF8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1ADF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1AF38[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1AF38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B138[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B138";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B338[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B338";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B418[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B418";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B508[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B508";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B708[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B708";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B908[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B908";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1BA38[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1BA38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_gfx_1BAB0[] = "__OTR__ast_ending/ast_ending_seg7_gfx_1BAB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1BC00[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1BC00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1BD40[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1BD40";
|
||||
|
7
include/assets/ast_ending_award_back.h
Normal file
7
include/assets/ast_ending_award_back.h
Normal file
@ -0,0 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char gEndingAwardBack[] = "__OTR__ast_ending_award_back/ending_award_back";
|
||||
|
7
include/assets/ast_ending_award_front.h
Normal file
7
include/assets/ast_ending_award_front.h
Normal file
@ -0,0 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char gEndingAwardFront[] = "__OTR__ast_ending_award_front/ending_award_front";
|
||||
|
9
include/assets/ast_ending_expert.h
Normal file
9
include/assets/ast_ending_expert.h
Normal file
@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char gEndingExpertReward[] = "__OTR__ast_ending_expert/ending_expert_reward";
|
||||
|
||||
static const ALIGN_ASSET(2) char gEndingNormalReward[] = "__OTR__ast_ending_expert/ending_normal_reward";
|
||||
|
205
include/assets/ast_enmy_planet.h
Normal file
205
include/assets/ast_enmy_planet.h
Normal file
@ -0,0 +1,205 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aTripodAnim[] = "__OTR__ast_enmy_planet/aTripodAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTripodSkel[] = "__OTR__ast_enmy_planet/aTripodSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4000290[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4000290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_338[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_338";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_398[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_398";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_4F0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_4F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5A0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_630[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_630";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVenomTankDL[] = "__OTR__ast_enmy_planet/aVenomTankDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8F8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4000E98[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4000E98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4001098[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4001098";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4001298[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4001298";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4001498[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4001498";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4001698[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4001698";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_40018A0[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_40018A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_1B78[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_1B78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_1BC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_1BC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_1C58[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_1C58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_1E48[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_1E48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_2028[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_2028";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_2158[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_2158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_2358[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_2358";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_23F8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_23F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_2458[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_2458";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_40024B8[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_40024B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4002538[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4002538";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4002D38[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4002D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4003D38[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4003D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4004538[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4004538";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4004D38[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4004D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFirebirdAnim[] = "__OTR__ast_enmy_planet/aFirebirdAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFirebirdSkel[] = "__OTR__ast_enmy_planet/aFirebirdSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_58E0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_58E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5A28[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5AE8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5AE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5C28[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5D78[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5D78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4005E78[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4005E78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4006078[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4006078";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4006280[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4006280";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6328[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6328";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6388[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6388";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_40064E8[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_40064E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_40066E8[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_40066E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVenomFighter1DL[] = "__OTR__ast_enmy_planet/aVenomFighter1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6AC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6AC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6B88[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6B88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6C88[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6C88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6CC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6CC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6DA8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6DA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6DE8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6DE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVenomFighter2DL[] = "__OTR__ast_enmy_planet/aVenomFighter2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7050[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7050";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_70B0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_70B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7200[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7200";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7250[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7250";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_72B0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_72B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7370[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7370";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGrangaFighter1DL[] = "__OTR__ast_enmy_planet/aGrangaFighter1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_75A0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_75A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7650[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7650";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_77D0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_77D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7810[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_78B0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_78B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_79F0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_79F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGrangaFighter2DL[] = "__OTR__ast_enmy_planet/aGrangaFighter2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7CA0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7DE0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7EA0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7EA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7EF0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_80C0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_80C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008100[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008100";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_8300[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_8300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8428[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8428";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8468[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8468";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_84E8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_84E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_86E8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_86E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_8830[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_8830";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8898[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8898";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_8970[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_8970";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_89D8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_89D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_8A90[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_8A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8B40[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8B40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8BD0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008CE0[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008CE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8D38[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008D68[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008F70[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008F70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8FC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8FC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008FF8[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008FF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSpyEyeDL[] = "__OTR__ast_enmy_planet/aSpyEyeDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9A58[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9A58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9B58[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9D18[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9DC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9DC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9E08[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9E08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9FE8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_A048[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_A048";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_A248[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_A248";
|
||||
|
271
include/assets/ast_enmy_space.h
Normal file
271
include/assets/ast_enmy_space.h
Normal file
@ -0,0 +1,271 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aKillerBeeAnim[] = "__OTR__ast_enmy_space/aKillerBeeAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKillerBeeSkel[] = "__OTR__ast_enmy_space/aKillerBeeSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aEnmySpMeMora1DL[] = "__OTR__ast_enmy_space/aEnmySpMeMora1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2D8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3A8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_408[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_408";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4E8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSpiderDL[] = "__OTR__ast_enmy_space/aSpiderDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_870[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_870";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8C0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_920[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_920";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B10[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_BD0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_D40[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_D40";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGammaOnDL[] = "__OTR__ast_enmy_space/aGammaOnDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_F68[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_F68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_10A8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_10A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4001108[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4001108";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAttacker2DL[] = "__OTR__ast_enmy_space/aAttacker2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1530[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1530";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_15B0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_15B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1700[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1740[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1740";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1900[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1980[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1980";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCommanderTex1[] = "__OTR__ast_enmy_space/aCommanderTex1";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCommanderTex2[] = "__OTR__ast_enmy_space/aCommanderTex2";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCommanderTex3[] = "__OTR__ast_enmy_space/aCommanderTex3";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCommanderTex4[] = "__OTR__ast_enmy_space/aCommanderTex4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4002230[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4002230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_23E8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_23E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2448[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2448";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_24C8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_24C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2558[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2558";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2598[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2598";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_gfx_2660[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_gfx_2660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2820[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_28C0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_28C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_29C0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_29C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2A20[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2B30[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4002C50[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4002C50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4002E50[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4002E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCommanderTex6[] = "__OTR__ast_enmy_space/aCommanderTex6";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4003250[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4003250";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4003270[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4003270";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCommanderTex5[] = "__OTR__ast_enmy_space/aCommanderTex5";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4003670[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4003670";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_gfx_36F0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_gfx_36F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_37E0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_37E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3830[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3830";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3890[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3890";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_gfx_3970[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_gfx_3970";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3A60[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3AB0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3AB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3B00[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3B00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4003BD0[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4003BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3EA8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3EF8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3EF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3F88[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3F88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4178[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4178";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4358[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4358";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4488[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4488";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4688[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4688";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4728[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4728";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4788[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4788";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_40047E8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40047E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4004FE8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4004FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4005FE8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4005FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_40067E8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40067E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4006FE8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4006FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_40077E8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40077E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4007870[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4007870";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7B50[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7B50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7BB0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7BB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7C40[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7E40[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7E40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7EF0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7F50[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7F50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7FB0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7FB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_81A0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_81A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8390[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8390";
|
||||
|
||||
static const ALIGN_ASSET(2) char aEnmySpMeMora2DL[] = "__OTR__ast_enmy_space/aEnmySpMeMora2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8520[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8520";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4008550[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4008550";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGammaOffDL[] = "__OTR__ast_enmy_space/aGammaOffDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8DF8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8F38[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVenomFighter3DL[] = "__OTR__ast_enmy_space/aVenomFighter3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9268[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9268";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9308[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9308";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9358[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9358";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_93D8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_93D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9418[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9418";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9508[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9508";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9608[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9608";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9648[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9648";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9688[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9688";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_40096B8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40096B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_40098B8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40098B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ENMY_SPACE_4009AB8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4009AB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCruiserGunAnim[] = "__OTR__ast_enmy_space/aCruiserGunAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCruiserGunSkel[] = "__OTR__ast_enmy_space/aCruiserGunSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_gfx_A3B0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_gfx_A3B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A470[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A570[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A570";
|
||||
|
||||
static const ALIGN_ASSET(2) char aEnmySpMeMora3DL[] = "__OTR__ast_enmy_space/aEnmySpMeMora3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A788[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A788";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A888[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A888";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A928[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A928";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A9E8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A9E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aCommanderDL[] = "__OTR__ast_enmy_space/aCommanderDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_AD28[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_AD28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_ADA8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_ADA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_AE08[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_AE08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_AE68[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_AE68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B068[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B068";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B0C8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B0C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B1F8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B1F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAttacker3DL[] = "__OTR__ast_enmy_space/aAttacker3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B5E8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B5E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B6F8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B6F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B798[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B798";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B898[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B898";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B8F8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B8F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B9B8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B9B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_BB98[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_BB98";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAttacker1DL[] = "__OTR__ast_enmy_space/aAttacker1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_BEF0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_BEF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_C0F0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_C0F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_C1B0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_C1B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_C330[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_C330";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_C390[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_C390";
|
||||
|
271
include/assets/ast_font_3d.h
Normal file
271
include/assets/ast_font_3d.h
Normal file
@ -0,0 +1,271 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_DOT[] = "__OTR__ast_font_3d/aFont3D_DOT";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_1[] = "__OTR__ast_font_3d/aFont3D_1";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_2D8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_2D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4A8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FONT3D_9000528[] = "__OTR__ast_font_3d/D_FONT3D_9000528";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FONT3D_9000548[] = "__OTR__ast_font_3d/D_FONT3D_9000548";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_O[] = "__OTR__ast_font_3d/aFont3D_O";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_678[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_678";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_878[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_878";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_D[] = "__OTR__ast_font_3d/aFont3D_D";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B18[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_D18[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_F18[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_F18";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_J[] = "__OTR__ast_font_3d/aFont3D_J";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1218[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1218";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1418[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1418";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_P[] = "__OTR__ast_font_3d/aFont3D_P";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1608[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1608";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1808[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1808";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_Z[] = "__OTR__ast_font_3d/aFont3D_Z";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1B08[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1B08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1D08[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_Y[] = "__OTR__ast_font_3d/aFont3D_Y";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1FA0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1FA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_21A0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_21A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_X[] = "__OTR__ast_font_3d/aFont3D_X";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_23F0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_23F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_25D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_25D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_27D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_27D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_W[] = "__OTR__ast_font_3d/aFont3D_W";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_29D8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_29D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_2BD8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_2BD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_2DD8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_2DD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_V[] = "__OTR__ast_font_3d/aFont3D_V";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_2F90[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_2F90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3170[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3170";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_U[] = "__OTR__ast_font_3d/aFont3D_U";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3328[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3328";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3518[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3518";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_T[] = "__OTR__ast_font_3d/aFont3D_T";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3728[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3728";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3928[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3928";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_S[] = "__OTR__ast_font_3d/aFont3D_S";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3BB8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3BB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3DB8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3DB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3FA8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3FA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_41A8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_41A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_R[] = "__OTR__ast_font_3d/aFont3D_R";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_43B8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_43B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_45B8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_45B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4798[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4798";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_Q[] = "__OTR__ast_font_3d/aFont3D_Q";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4A48[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4A48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4C28[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_N[] = "__OTR__ast_font_3d/aFont3D_N";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4F38[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5128[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5128";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_52F8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_52F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_M[] = "__OTR__ast_font_3d/aFont3D_M";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_54D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_54D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_56C0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_56C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_58C0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_58C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_L[] = "__OTR__ast_font_3d/aFont3D_L";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5A58[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5A58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5C58[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5C58";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_K[] = "__OTR__ast_font_3d/aFont3D_K";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5DF8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5FE8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_61C8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_61C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_I[] = "__OTR__ast_font_3d/aFont3D_I";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6380[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6380";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_H[] = "__OTR__ast_font_3d/aFont3D_H";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6640[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6640";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6840[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6A20[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_G[] = "__OTR__ast_font_3d/aFont3D_G";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6C20[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6C20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6E20[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_7000[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_7000";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_F[] = "__OTR__ast_font_3d/aFont3D_F";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_71E0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_71E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_73E0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_73E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_E[] = "__OTR__ast_font_3d/aFont3D_E";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_76E8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_76E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_78E8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_78E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_7AE8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_7AE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_C[] = "__OTR__ast_font_3d/aFont3D_C";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_7CA8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_7CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_7E88[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_7E88";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_B[] = "__OTR__ast_font_3d/aFont3D_B";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8158[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8338[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8338";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8528[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8528";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_A[] = "__OTR__ast_font_3d/aFont3D_A";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8840[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8A30[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8C20[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8C20";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_9[] = "__OTR__ast_font_3d/aFont3D_9";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8DB8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8DB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8FB8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8FB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_91B8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_91B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_8[] = "__OTR__ast_font_3d/aFont3D_8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_93E8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_93E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_95D8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_95D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_97C8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_97C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_7[] = "__OTR__ast_font_3d/aFont3D_7";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_9A68[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_9A68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_9C68[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_9C68";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_6[] = "__OTR__ast_font_3d/aFont3D_6";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_9E08[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_9E08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A008[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A008";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A208[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A208";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_5[] = "__OTR__ast_font_3d/aFont3D_5";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A3D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A3D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A5D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A5D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A7B0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A7B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_4[] = "__OTR__ast_font_3d/aFont3D_4";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A9D8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A9D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_ABC8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_ABC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_AD98[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_AD98";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_3[] = "__OTR__ast_font_3d/aFont3D_3";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B0A8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B0A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B2A8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B2A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B478[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B478";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_2[] = "__OTR__ast_font_3d/aFont3D_2";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B6C8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B6C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B8C8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B8C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_BAC8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_BAC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFont3D_0[] = "__OTR__ast_font_3d/aFont3D_0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_BD10[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_BD10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_BF00[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_BF00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_C0D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_C0D0";
|
||||
|
185
include/assets/ast_fortuna.h
Normal file
185
include/assets/ast_fortuna.h
Normal file
@ -0,0 +1,185 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
#include "sf64level.h"
|
||||
#include "sf64event.h"
|
||||
#include "sf64player.h"
|
||||
#include "sf64audio_external.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoTitleCardTex[] = "__OTR__ast_fortuna/aFoTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6001260[] = "__OTR__ast_fortuna/D_FO_6001260";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6001360[] = "__OTR__ast_fortuna/D_FO_6001360";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_1490[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_1490";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_15D0[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_15D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_1790[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_1790";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6001890[] = "__OTR__ast_fortuna/D_FO_6001890";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6002090[] = "__OTR__ast_fortuna/D_FO_6002090";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6002890[] = "__OTR__ast_fortuna/D_FO_6002890";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoBaseDL2[] = "__OTR__ast_fortuna/aFoBaseDL2";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_33B0[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_33B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3520[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3520";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3710[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3710";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3900[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3A30[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3B30[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3D20[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3D20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3E00[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3E00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6003EC0[] = "__OTR__ast_fortuna/D_FO_6003EC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_60046C0[] = "__OTR__ast_fortuna/D_FO_60046C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_60048C0[] = "__OTR__ast_fortuna/D_FO_60048C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6004AC0[] = "__OTR__ast_fortuna/D_FO_6004AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6005AC0[] = "__OTR__ast_fortuna/D_FO_6005AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6005CC0[] = "__OTR__ast_fortuna/D_FO_6005CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_5DC0[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_5DC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_5E20[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_5E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6005F20[] = "__OTR__ast_fortuna/D_FO_6005F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6006120[] = "__OTR__ast_fortuna/D_FO_6006120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6006220[] = "__OTR__ast_fortuna/D_FO_6006220";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoMountain3DL[] = "__OTR__ast_fortuna/aFoMountain3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_63B8[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_63B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_65B8[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_65B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoTowerDL[] = "__OTR__ast_fortuna/aFoTowerDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_6898[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_6898";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6006BE0[] = "__OTR__ast_fortuna/D_FO_6006BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_6D00[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_6D00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_60070E0[] = "__OTR__ast_fortuna/D_FO_60070E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_60072E0[] = "__OTR__ast_fortuna/D_FO_60072E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_60074E0[] = "__OTR__ast_fortuna/D_FO_60074E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7540[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7540";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6007590[] = "__OTR__ast_fortuna/D_FO_6007590";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7648[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7648";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_76B8[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_76B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6007730[] = "__OTR__ast_fortuna/D_FO_6007730";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7788[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7788";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoRadarAnim[] = "__OTR__ast_fortuna/aFoRadarAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoRadarSkel[] = "__OTR__ast_fortuna/aFoRadarSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoMountain1DL[] = "__OTR__ast_fortuna/aFoMountain1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7A60[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7C60[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7C60";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoMountain2DL[] = "__OTR__ast_fortuna/aFoMountain2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7E30[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_8030[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_8030";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6008150[] = "__OTR__ast_fortuna/D_FO_6008150";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_6009070[] = "__OTR__ast_fortuna/D_FO_6009070";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoEnemyShadowDL[] = "__OTR__ast_fortuna/aFoEnemyShadowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_9FE8[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_9FE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600A018[] = "__OTR__ast_fortuna/D_FO_600A018";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoPoleDL[] = "__OTR__ast_fortuna/aFoPoleDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_A478[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_A478";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600A4A8[] = "__OTR__ast_fortuna/D_FO_600A4A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600B4B0[] = "__OTR__ast_fortuna/D_FO_600B4B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_B540[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_B540";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_B580[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_B580";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600B5C0[] = "__OTR__ast_fortuna/D_FO_600B5C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600C5C0[] = "__OTR__ast_fortuna/D_FO_600C5C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoBaseDL1[] = "__OTR__ast_fortuna/aFoBaseDL1";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_D638[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_D638";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600D7E8[] = "__OTR__ast_fortuna/D_FO_600D7E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600D9F0[] = "__OTR__ast_fortuna/D_FO_600D9F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_DA48[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_DA48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600DA88[] = "__OTR__ast_fortuna/D_FO_600DA88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600EA90[] = "__OTR__ast_fortuna/D_FO_600EA90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600EAD4[] = "__OTR__ast_fortuna/D_FO_600EAD4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600F1DC[] = "__OTR__ast_fortuna/D_FO_600F1DC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600F394[] = "__OTR__ast_fortuna/D_FO_600F394";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600F3F4[] = "__OTR__ast_fortuna/D_FO_600F3F4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600F5AC[] = "__OTR__ast_fortuna/D_FO_600F5AC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600F60C[] = "__OTR__ast_fortuna/D_FO_600F60C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600FD50[] = "__OTR__ast_fortuna/D_FO_600FD50";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoPoleHitbox[] = "__OTR__ast_fortuna/aFoPoleHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoTowerHitbox[] = "__OTR__ast_fortuna/aFoTowerHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoRadarHitbox[] = "__OTR__ast_fortuna/aFoRadarHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_FO_600FF64[] = "__OTR__ast_fortuna/D_FO_600FF64";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoMountain1Hitbox[] = "__OTR__ast_fortuna/aFoMountain1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoMountain2Hitbox[] = "__OTR__ast_fortuna/aFoMountain2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoMountain3Hitbox[] = "__OTR__ast_fortuna/aFoMountain3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoBaseHitbox[] = "__OTR__ast_fortuna/aFoBaseHitbox";
|
||||
|
191
include/assets/ast_great_fox.h
Normal file
191
include/assets/ast_great_fox.h
Normal file
@ -0,0 +1,191 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aGreatFoxIntactDL[] = "__OTR__ast_great_fox/aGreatFoxIntactDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_8F8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_8F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_AD8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_CB8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_CB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_EA8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_10A8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_10A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1298[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1498[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1498";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1698[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1878[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1878";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_18D8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_18D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1958[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1958";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1B58[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1D48[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1D48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1F28[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1F28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2128[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2128";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2308[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2308";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2508[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2508";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2708[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2708";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2738[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2738";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2928[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2928";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2B18[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2D18[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2F08[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2F08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3008[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3008";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3058[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3058";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_30D8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_30D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3158[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3348[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3348";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3538[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3538";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_36B8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_36B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_37D8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_37D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3898[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3898";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3A78[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3A78";
|
||||
|
||||
static const ALIGN_ASSET(2) char aGreatFoxDamagedDL[] = "__OTR__ast_great_fox/aGreatFoxDamagedDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4440[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4440";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_44C0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_44C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_44F0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_44F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4590[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4590";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4770[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4950[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4950";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4B40[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4B40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4D20[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4D20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4F00[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_50E0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_50E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_52E0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_52E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_53F0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_53F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5470[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5670[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5670";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5860[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5860";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5A60[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5C40[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5E20[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6000[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6120[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6300[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_64F0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_64F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_66E0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_66E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_68C0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_68C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_69B0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_69B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6A00[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6A00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6A80[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6AC0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6CB0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6CB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6E90[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6E90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_7040[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_7040";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_7160[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_7160";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_7220[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_7220";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_7400[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_7400";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E007430[] = "__OTR__ast_great_fox/D_GREAT_FOX_E007430";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E0074B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E0074B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E0084B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E0084B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E008CB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E008CB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E0094B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E0094B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E009CB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E009CB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00ACB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00ACB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00B4B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00B4B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00B530[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00B530";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00B5B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00B5B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00BDB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00BDB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00CDB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00CDB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00CFB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00CFB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00D7B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00D7B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00DFB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00DFB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_E018[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_E018";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00E078[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00E078";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00E100[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00E100";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00F020[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00F020";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E00FF40[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00FF40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E010E60[] = "__OTR__ast_great_fox/D_GREAT_FOX_E010E60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E011D80[] = "__OTR__ast_great_fox/D_GREAT_FOX_E011D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_11DD8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_11DD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_GREAT_FOX_E011E08[] = "__OTR__ast_great_fox/D_GREAT_FOX_E011E08";
|
||||
|
299
include/assets/ast_katina.h
Normal file
299
include/assets/ast_katina.h
Normal file
@ -0,0 +1,299 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
#include "sf64level.h"
|
||||
#include "sf64event.h"
|
||||
#include "sf64player.h"
|
||||
#include "sf64audio_external.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaTitleCardTex[] = "__OTR__ast_katina/aKaTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6001260[] = "__OTR__ast_katina/D_KA_6001260";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaDestroyedHatchDL[] = "__OTR__ast_katina/aKaDestroyedHatchDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1330[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1330";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaEnemyDL[] = "__OTR__ast_katina/aKaEnemyDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1658[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1658";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1698[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1738[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1738";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1938[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1938";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6001968[] = "__OTR__ast_katina/D_KA_6001968";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6002170[] = "__OTR__ast_katina/D_KA_6002170";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_28F8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_28F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_2AC8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_2AC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_2CA8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_2CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_2EA8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_2EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3088[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3088";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_31A8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_31A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_33A8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_33A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_34A8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_34A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3698[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3888[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3888";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3A88[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3A88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3AE8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3AE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3BE8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3D78[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3D78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3DB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3DB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3DF8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3E38[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3E78[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3E78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3EB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3EB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3EF8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3EF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3F38[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3F78[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3F78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3FB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3FB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3FF8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3FF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_4038[] = "__OTR__ast_katina/ast_katina_seg6_vtx_4038";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6004078[] = "__OTR__ast_katina/D_KA_6004078";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_60040F8[] = "__OTR__ast_katina/D_KA_60040F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_60048F8[] = "__OTR__ast_katina/D_KA_60048F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_60050F8[] = "__OTR__ast_katina/D_KA_60050F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_60052F8[] = "__OTR__ast_katina/D_KA_60052F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6005AF8[] = "__OTR__ast_katina/D_KA_6005AF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_60062F8[] = "__OTR__ast_katina/D_KA_60062F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6006AF8[] = "__OTR__ast_katina/D_KA_6006AF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaDestroyedKaSaucererDL[] = "__OTR__ast_katina/aKaDestroyedKaSaucererDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_7B00[] = "__OTR__ast_katina/ast_katina_seg6_vtx_7B00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_7CD0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_7CD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_7EB0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_7EB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_80B0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_80B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8290[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8330[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8330";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8530[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8530";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8630[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8820[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8A20[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8A50[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8A50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8B50[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8B50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8C60[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8C60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8CA0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8CE0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8CE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8D20[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8D20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8D60[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8D60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8DA0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8DA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8DE0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8E20[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8E60[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8E60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8FE0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8FE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_9150[] = "__OTR__ast_katina/ast_katina_seg6_vtx_9150";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_9190[] = "__OTR__ast_katina/ast_katina_seg6_vtx_9190";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_91D0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_91D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_9210[] = "__OTR__ast_katina/ast_katina_seg6_vtx_9210";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6009250[] = "__OTR__ast_katina/D_KA_6009250";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_9318[] = "__OTR__ast_katina/ast_katina_seg6_vtx_9318";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_60094A8[] = "__OTR__ast_katina/D_KA_60094A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6009CB0[] = "__OTR__ast_katina/D_KA_6009CB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600ABD0[] = "__OTR__ast_katina/D_KA_600ABD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaFLBaseDL[] = "__OTR__ast_katina/aKaFLBaseDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_BBF0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_BBF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_BCF0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_BCF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_BD30[] = "__OTR__ast_katina/ast_katina_seg6_vtx_BD30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600BDB0[] = "__OTR__ast_katina/D_KA_600BDB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600BFB0[] = "__OTR__ast_katina/D_KA_600BFB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_C058[] = "__OTR__ast_katina/ast_katina_seg6_vtx_C058";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_C258[] = "__OTR__ast_katina/ast_katina_seg6_vtx_C258";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600C2D8[] = "__OTR__ast_katina/D_KA_600C2D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaFLBaseDestroyedDL[] = "__OTR__ast_katina/aKaFLBaseDestroyedDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_C5A0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_C5A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_C620[] = "__OTR__ast_katina/ast_katina_seg6_vtx_C620";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600C760[] = "__OTR__ast_katina/D_KA_600C760";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600C960[] = "__OTR__ast_katina/D_KA_600C960";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600CB60[] = "__OTR__ast_katina/D_KA_600CB60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_CC18[] = "__OTR__ast_katina/ast_katina_seg6_vtx_CC18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_CCB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_CCB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aDestroyedHatch2DL[] = "__OTR__ast_katina/aDestroyedHatch2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_CE58[] = "__OTR__ast_katina/ast_katina_seg6_vtx_CE58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D058[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D058";
|
||||
|
||||
static const ALIGN_ASSET(2) char aDestroyedCoreDL[] = "__OTR__ast_katina/aDestroyedCoreDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D140[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D140";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D250[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D250";
|
||||
|
||||
static const ALIGN_ASSET(2) char aDestroyedHatch4DL[] = "__OTR__ast_katina/aDestroyedHatch4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D318[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D318";
|
||||
|
||||
static const ALIGN_ASSET(2) char aDestroyedHatch3DL[] = "__OTR__ast_katina/aDestroyedHatch3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D568[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D568";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaCornerianFighterShadowDL[] = "__OTR__ast_katina/aKaCornerianFighterShadowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D788[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D788";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600D7B8[] = "__OTR__ast_katina/D_KA_600D7B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaEnemyShadowDL[] = "__OTR__ast_katina/aKaEnemyShadowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_DC18[] = "__OTR__ast_katina/ast_katina_seg6_vtx_DC18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600DC48[] = "__OTR__ast_katina/D_KA_600DC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaCornerianFighterDL[] = "__OTR__ast_katina/aKaCornerianFighterDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E208[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E208";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E3F8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E3F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E4C8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E4C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E6C8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E6C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E728[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E728";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E7B8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E7B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600E7E8[] = "__OTR__ast_katina/D_KA_600E7E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600E9E8[] = "__OTR__ast_katina/D_KA_600E9E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600EBE8[] = "__OTR__ast_katina/D_KA_600EBE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600EDE8[] = "__OTR__ast_katina/D_KA_600EDE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaEnemyLowPolyDL[] = "__OTR__ast_katina/aKaEnemyLowPolyDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_F098[] = "__OTR__ast_katina/ast_katina_seg6_vtx_F098";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_F128[] = "__OTR__ast_katina/ast_katina_seg6_vtx_F128";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600F1D0[] = "__OTR__ast_katina/D_KA_600F1D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_F220[] = "__OTR__ast_katina/ast_katina_seg6_vtx_F220";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_600F260[] = "__OTR__ast_katina/D_KA_600F260";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6010260[] = "__OTR__ast_katina/D_KA_6010260";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10338[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10338";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_104B8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_104B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_60105D8[] = "__OTR__ast_katina/D_KA_60105D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6010744[] = "__OTR__ast_katina/D_KA_6010744";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6010780[] = "__OTR__ast_katina/D_KA_6010780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10858[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10858";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_109F8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_109F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6010A60[] = "__OTR__ast_katina/D_KA_6010A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10B38[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10B38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10CB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10CB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6010D20[] = "__OTR__ast_katina/D_KA_6010D20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10DF8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10F98[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10F98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6011000[] = "__OTR__ast_katina/D_KA_6011000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_6011044[] = "__OTR__ast_katina/D_KA_6011044";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaSaucererHitbox[] = "__OTR__ast_katina/aKaSaucererHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aKaFrontlineBaseHitbox[] = "__OTR__ast_katina/aKaFrontlineBaseHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_KA_60111D8[] = "__OTR__ast_katina/D_KA_60111D8";
|
||||
|
109
include/assets/ast_landmaster.h
Normal file
109
include/assets/ast_landmaster.h
Normal file
@ -0,0 +1,109 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aLandmasterLifeIconTex[] = "__OTR__ast_landmaster/aLandmasterLifeIconTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLandmasterLifeIconTLUT[] = "__OTR__ast_landmaster/aLandmasterLifeIconTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLandmasterModelDL[] = "__OTR__ast_landmaster/aLandmasterModelDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_660[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_840[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_A30[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_C10[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_C10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_C40[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_D30[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_D30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_F30[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_F30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_F70[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_F70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1050[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1050";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1190[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1190";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1290[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_12F0[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_12F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_13B0[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_13B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_13E0[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_13E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1410[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1410";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1450[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1490[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1490";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_14C0[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_14C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1500[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1500";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3001680[] = "__OTR__ast_landmaster/D_landmaster_3001680";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3001E80[] = "__OTR__ast_landmaster/D_landmaster_3001E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3002680[] = "__OTR__ast_landmaster/D_landmaster_3002680";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3002E80[] = "__OTR__ast_landmaster/D_landmaster_3002E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3003680[] = "__OTR__ast_landmaster/D_landmaster_3003680";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLandmasterCanonDL[] = "__OTR__ast_landmaster/aLandmasterCanonDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4818[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4818";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4918[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4918";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4B08[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4B08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4B68[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4B68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4C68[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4C68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3004CA8[] = "__OTR__ast_landmaster/D_landmaster_3004CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_30054A8[] = "__OTR__ast_landmaster/D_landmaster_30054A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3005CA8[] = "__OTR__ast_landmaster/D_landmaster_3005CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3005EA8[] = "__OTR__ast_landmaster/D_landmaster_3005EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_30066B0[] = "__OTR__ast_landmaster/D_landmaster_30066B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_6708[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_6708";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3006738[] = "__OTR__ast_landmaster/D_landmaster_3006738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3006940[] = "__OTR__ast_landmaster/D_landmaster_3006940";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_6998[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_6998";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_30069D8[] = "__OTR__ast_landmaster/D_landmaster_30069D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3006DE0[] = "__OTR__ast_landmaster/D_landmaster_3006DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_6E38[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_6E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3006E68[] = "__OTR__ast_landmaster/D_landmaster_3006E68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3007E70[] = "__OTR__ast_landmaster/D_landmaster_3007E70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_7EC8[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_7EC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3007EF8[] = "__OTR__ast_landmaster/D_landmaster_3007EF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3008100[] = "__OTR__ast_landmaster/D_landmaster_3008100";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_8158[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_8158";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_landmaster_3008188[] = "__OTR__ast_landmaster/D_landmaster_3008188";
|
||||
|
7
include/assets/ast_logo.h
Normal file
7
include/assets/ast_logo.h
Normal file
@ -0,0 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char gNintendoLogo[] = "__OTR__ast_logo/nintendo_logo";
|
||||
|
1406
include/assets/ast_macbeth.h
Normal file
1406
include/assets/ast_macbeth.h
Normal file
File diff suppressed because it is too large
Load Diff
435
include/assets/ast_map.h
Normal file
435
include/assets/ast_map.h
Normal file
@ -0,0 +1,435 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapRetryCourseGameOverTex[] = "__OTR__ast_map/aMapRetryCourseGameOverTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapProceedNextCourseTex[] = "__OTR__ast_map/aMapProceedNextCourseTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapRetryCourseLose1UPTex[] = "__OTR__ast_map/aMapRetryCourseLose1UPTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapChangeCourseTex[] = "__OTR__ast_map/aMapChangeCourseTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6001C80[] = "__OTR__ast_map/D_MAP_6001C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6002160[] = "__OTR__ast_map/D_MAP_6002160";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_60030D0[] = "__OTR__ast_map/D_MAP_60030D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6003B50[] = "__OTR__ast_map/D_MAP_6003B50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6004AC0[] = "__OTR__ast_map/D_MAP_6004AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6005740[] = "__OTR__ast_map/D_MAP_6005740";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6006320[] = "__OTR__ast_map/D_MAP_6006320";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6006E80[] = "__OTR__ast_map/D_MAP_6006E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6007B90[] = "__OTR__ast_map/D_MAP_6007B90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6008990[] = "__OTR__ast_map/D_MAP_6008990";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6009AD0[] = "__OTR__ast_map/D_MAP_6009AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_600AD30[] = "__OTR__ast_map/D_MAP_600AD30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_600B9B0[] = "__OTR__ast_map/D_MAP_600B9B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_600CC10[] = "__OTR__ast_map/D_MAP_600CC10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_600D590[] = "__OTR__ast_map/D_MAP_600D590";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_600E210[] = "__OTR__ast_map/D_MAP_600E210";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_600F390[] = "__OTR__ast_map/D_MAP_600F390";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6010010[] = "__OTR__ast_map/D_MAP_6010010";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_60105C0[] = "__OTR__ast_map/D_MAP_60105C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6011660[] = "__OTR__ast_map/D_MAP_6011660";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6011EA0[] = "__OTR__ast_map/D_MAP_6011EA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_60131A0[] = "__OTR__ast_map/D_MAP_60131A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_60139E0[] = "__OTR__ast_map/D_MAP_60139E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6014360[] = "__OTR__ast_map/D_MAP_6014360";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6014BA0[] = "__OTR__ast_map/D_MAP_6014BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6015CE0[] = "__OTR__ast_map/D_MAP_6015CE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6016760[] = "__OTR__ast_map/D_MAP_6016760";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6017640[] = "__OTR__ast_map/D_MAP_6017640";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6018280[] = "__OTR__ast_map/D_MAP_6018280";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPrologueTextFadeTex[] = "__OTR__ast_map/aMapPrologueTextFadeTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapVenomCloudTex[] = "__OTR__ast_map/aMapVenomCloudTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapOptionBgTex[] = "__OTR__ast_map/aMapOptionBgTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_1B8B0[] = "__OTR__ast_map/D_MAP_601B8B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapSectorXDL[] = "__OTR__ast_map/aMapSectorXDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1C120[] = "__OTR__ast_map/ast_map_seg6_vtx_1C120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601C160[] = "__OTR__ast_map/D_MAP_601C160";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapSectorYDL[] = "__OTR__ast_map/aMapSectorYDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1C9B0[] = "__OTR__ast_map/ast_map_seg6_vtx_1C9B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601C9F0[] = "__OTR__ast_map/D_MAP_601C9F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapMedalDL[] = "__OTR__ast_map/aMapMedalDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1D290[] = "__OTR__ast_map/ast_map_seg6_vtx_1D290";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapMedalTex[] = "__OTR__ast_map/aMapMedalTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601DAF0[] = "__OTR__ast_map/D_MAP_601DAF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapArwingIconTex[] = "__OTR__ast_map/aMapArwingIconTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapArwingIconTLUT[] = "__OTR__ast_map/aMapArwingIconTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapXTex[] = "__OTR__ast_map/aMapXTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapXTLUT[] = "__OTR__ast_map/aMapXTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapCursorDL[] = "__OTR__ast_map/aMapCursorDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1DD98[] = "__OTR__ast_map/ast_map_seg6_vtx_1DD98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601DDE8[] = "__OTR__ast_map/D_MAP_601DDE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601DE68[] = "__OTR__ast_map/D_MAP_601DE68";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapArea6DL[] = "__OTR__ast_map/aMapArea6DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E098[] = "__OTR__ast_map/ast_map_seg6_vtx_1E098";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E298[] = "__OTR__ast_map/ast_map_seg6_vtx_1E298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E498[] = "__OTR__ast_map/ast_map_seg6_vtx_1E498";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E698[] = "__OTR__ast_map/ast_map_seg6_vtx_1E698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E7D8[] = "__OTR__ast_map/ast_map_seg6_vtx_1E7D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601E8F8[] = "__OTR__ast_map/D_MAP_601E8F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601E978[] = "__OTR__ast_map/D_MAP_601E978";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapArea6ShipDL[] = "__OTR__ast_map/aMapArea6ShipDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1EC60[] = "__OTR__ast_map/ast_map_seg6_vtx_1EC60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1EDF0[] = "__OTR__ast_map/ast_map_seg6_vtx_1EDF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1EE30[] = "__OTR__ast_map/ast_map_seg6_vtx_1EE30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1F020[] = "__OTR__ast_map/ast_map_seg6_vtx_1F020";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1F220[] = "__OTR__ast_map/ast_map_seg6_vtx_1F220";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1F280[] = "__OTR__ast_map/ast_map_seg6_vtx_1F280";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F2B0[] = "__OTR__ast_map/D_MAP_601F2B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F4B0[] = "__OTR__ast_map/D_MAP_601F4B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F4D0[] = "__OTR__ast_map/D_MAP_601F4D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F550[] = "__OTR__ast_map/D_MAP_601F550";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F570[] = "__OTR__ast_map/D_MAP_601F570";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F5F0[] = "__OTR__ast_map/D_MAP_601F5F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F610[] = "__OTR__ast_map/D_MAP_601F610";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F690[] = "__OTR__ast_map/D_MAP_601F690";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapSectorZDL[] = "__OTR__ast_map/aMapSectorZDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1F700[] = "__OTR__ast_map/ast_map_seg6_vtx_1F700";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_601F740[] = "__OTR__ast_map/D_MAP_601F740";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapAquasTex[] = "__OTR__ast_map/aMapAquasTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gMapAquasTLUT[] = "__OTR__ast_map/gMapAquasTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapVenomTex[] = "__OTR__ast_map/aMapVenomTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gMapVenomTLUT[] = "__OTR__ast_map/gMapVenomTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapCorneriaTex[] = "__OTR__ast_map/aMapCorneriaTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gMapCorneriaTLUT[] = "__OTR__ast_map/gMapCorneriaTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapFortunaTex[] = "__OTR__ast_map/aMapFortunaTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gMapFortunaTLUT[] = "__OTR__ast_map/gMapFortunaTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapKatinaTex[] = "__OTR__ast_map/aMapKatinaTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gMapKatinaTLUT[] = "__OTR__ast_map/gMapKatinaTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapMacbethTex[] = "__OTR__ast_map/aMapMacbethTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gMapMacbethTLUT[] = "__OTR__ast_map/gMapMacbethTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapTitaniaTex[] = "__OTR__ast_map/aMapTitaniaTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gMapTitaniaTLUT[] = "__OTR__ast_map/gMapTitaniaTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapZonessTex[] = "__OTR__ast_map/aMapZonessTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gMapZonessTLUT[] = "__OTR__ast_map/gMapZonessTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapRadioCharFalcoTex[] = "__OTR__ast_map/aMapRadioCharFalcoTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapRadioCharPeppyTex[] = "__OTR__ast_map/aMapRadioCharPeppyTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPrologue3Tex[] = "__OTR__ast_map/aMapPrologue3Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPrologue2Tex[] = "__OTR__ast_map/aMapPrologue2Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPrologue6Tex[] = "__OTR__ast_map/aMapPrologue6Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPrologue4Tex[] = "__OTR__ast_map/aMapPrologue4Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPrologue7Tex[] = "__OTR__ast_map/aMapPrologue7Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPrologue5Tex[] = "__OTR__ast_map/aMapPrologue5Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPrologue1Tex[] = "__OTR__ast_map/aMapPrologue1Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapRadioCharSlippyTex[] = "__OTR__ast_map/aMapRadioCharSlippyTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapWhiteSquareTex[] = "__OTR__ast_map/aMapWhiteSquareTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6044820[] = "__OTR__ast_map/D_MAP_6044820";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6046CD0[] = "__OTR__ast_map/D_MAP_6046CD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPathBoxTex[] = "__OTR__ast_map/aMapPathBoxTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapPlanetExplosionDL[] = "__OTR__ast_map/aMapPlanetExplosionDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_47A28[] = "__OTR__ast_map/ast_map_seg6_vtx_47A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6047A68[] = "__OTR__ast_map/D_MAP_6047A68";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapVenomCloudDL[] = "__OTR__ast_map/aMapVenomCloudDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_47F00[] = "__OTR__ast_map/ast_map_seg6_vtx_47F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapVenomCloudEffectTex[] = "__OTR__ast_map/aMapVenomCloudEffectTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6048F80[] = "__OTR__ast_map/D_MAP_6048F80";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapExplosion4DL[] = "__OTR__ast_map/aMapExplosion4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4A018[] = "__OTR__ast_map/ast_map_seg6_vtx_4A018";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604A048[] = "__OTR__ast_map/D_MAP_604A048";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604A148[] = "__OTR__ast_map/D_MAP_604A148";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapExplosion3DL[] = "__OTR__ast_map/aMapExplosion3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4A228[] = "__OTR__ast_map/ast_map_seg6_vtx_4A228";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604A258[] = "__OTR__ast_map/D_MAP_604A258";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604A358[] = "__OTR__ast_map/D_MAP_604A358";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapExplosion2DL[] = "__OTR__ast_map/aMapExplosion2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4A498[] = "__OTR__ast_map/ast_map_seg6_vtx_4A498";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604A4C8[] = "__OTR__ast_map/D_MAP_604A4C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604A5C8[] = "__OTR__ast_map/D_MAP_604A5C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapExplosion1DL[] = "__OTR__ast_map/aMapExplosion1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4A7A8[] = "__OTR__ast_map/ast_map_seg6_vtx_4A7A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604A7D8[] = "__OTR__ast_map/D_MAP_604A7D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604A8D8[] = "__OTR__ast_map/D_MAP_604A8D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapArwingDL[] = "__OTR__ast_map/aMapArwingDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4AD50[] = "__OTR__ast_map/ast_map_seg6_vtx_4AD50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604B510[] = "__OTR__ast_map/D_MAP_604B510";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604B590[] = "__OTR__ast_map/D_MAP_604B590";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604B5B0[] = "__OTR__ast_map/D_MAP_604B5B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604B630[] = "__OTR__ast_map/D_MAP_604B630";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604B650[] = "__OTR__ast_map/D_MAP_604B650";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapBolseDL[] = "__OTR__ast_map/aMapBolseDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4B988[] = "__OTR__ast_map/ast_map_seg6_vtx_4B988";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4BA08[] = "__OTR__ast_map/ast_map_seg6_vtx_4BA08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4BA48[] = "__OTR__ast_map/ast_map_seg6_vtx_4BA48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4BB48[] = "__OTR__ast_map/ast_map_seg6_vtx_4BB48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604BC48[] = "__OTR__ast_map/D_MAP_604BC48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604BE48[] = "__OTR__ast_map/D_MAP_604BE48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604BE68[] = "__OTR__ast_map/D_MAP_604BE68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604C068[] = "__OTR__ast_map/D_MAP_604C068";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604C088[] = "__OTR__ast_map/D_MAP_604C088";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604C288[] = "__OTR__ast_map/D_MAP_604C288";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604C2A8[] = "__OTR__ast_map/D_MAP_604C2A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604C328[] = "__OTR__ast_map/D_MAP_604C328";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapTvScreenGlowDL[] = "__OTR__ast_map/aMapTvScreenGlowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4C3C0[] = "__OTR__ast_map/ast_map_seg6_vtx_4C3C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapTvScreenGlowTex[] = "__OTR__ast_map/aMapTvScreenGlowTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapTitaniaRings1DL[] = "__OTR__ast_map/aMapTitaniaRings1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4C598[] = "__OTR__ast_map/ast_map_seg6_vtx_4C598";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604C5D8[] = "__OTR__ast_map/D_MAP_604C5D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapTitaniaRings2DL[] = "__OTR__ast_map/aMapTitaniaRings2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4CE38[] = "__OTR__ast_map/ast_map_seg6_vtx_4CE38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604CE78[] = "__OTR__ast_map/D_MAP_604CE78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604D680[] = "__OTR__ast_map/D_MAP_604D680";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4D6D8[] = "__OTR__ast_map/ast_map_seg6_vtx_4D6D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604D708[] = "__OTR__ast_map/D_MAP_604D708";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapSolarDL[] = "__OTR__ast_map/aMapSolarDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4DC20[] = "__OTR__ast_map/ast_map_seg6_vtx_4DC20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604DD20[] = "__OTR__ast_map/D_MAP_604DD20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604ED20[] = "__OTR__ast_map/D_MAP_604ED20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_604FD20[] = "__OTR__ast_map/D_MAP_604FD20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6050D20[] = "__OTR__ast_map/D_MAP_6050D20";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapGralPepperFace2DL[] = "__OTR__ast_map/aMapGralPepperFace2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_51E20[] = "__OTR__ast_map/ast_map_seg6_vtx_51E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_51E60[] = "__OTR__ast_map/ast_map_seg6_vtx_51E60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_51EA0[] = "__OTR__ast_map/ast_map_seg6_vtx_51EA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_51EE0[] = "__OTR__ast_map/ast_map_seg6_vtx_51EE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6051F20[] = "__OTR__ast_map/D_MAP_6051F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6052F20[] = "__OTR__ast_map/D_MAP_6052F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6053F20[] = "__OTR__ast_map/D_MAP_6053F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6054F20[] = "__OTR__ast_map/D_MAP_6054F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapGralPepperFace1DL[] = "__OTR__ast_map/aMapGralPepperFace1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_56020[] = "__OTR__ast_map/ast_map_seg6_vtx_56020";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_56060[] = "__OTR__ast_map/ast_map_seg6_vtx_56060";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_560A0[] = "__OTR__ast_map/ast_map_seg6_vtx_560A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_560E0[] = "__OTR__ast_map/ast_map_seg6_vtx_560E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6056120[] = "__OTR__ast_map/D_MAP_6056120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6057120[] = "__OTR__ast_map/D_MAP_6057120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6058120[] = "__OTR__ast_map/D_MAP_6058120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6059120[] = "__OTR__ast_map/D_MAP_6059120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605A120[] = "__OTR__ast_map/D_MAP_605A120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5A1B0[] = "__OTR__ast_map/ast_map_seg6_vtx_5A1B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5A1F0[] = "__OTR__ast_map/ast_map_seg6_vtx_5A1F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605A230[] = "__OTR__ast_map/D_MAP_605A230";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605B230[] = "__OTR__ast_map/D_MAP_605B230";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605C230[] = "__OTR__ast_map/D_MAP_605C230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C410[] = "__OTR__ast_map/ast_map_seg6_vtx_5C410";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C450[] = "__OTR__ast_map/ast_map_seg6_vtx_5C450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C490[] = "__OTR__ast_map/ast_map_seg6_vtx_5C490";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C4D0[] = "__OTR__ast_map/ast_map_seg6_vtx_5C4D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C510[] = "__OTR__ast_map/ast_map_seg6_vtx_5C510";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C550[] = "__OTR__ast_map/ast_map_seg6_vtx_5C550";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C590[] = "__OTR__ast_map/ast_map_seg6_vtx_5C590";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C5D0[] = "__OTR__ast_map/ast_map_seg6_vtx_5C5D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605C610[] = "__OTR__ast_map/D_MAP_605C610";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605CE10[] = "__OTR__ast_map/D_MAP_605CE10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605D610[] = "__OTR__ast_map/D_MAP_605D610";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605DE10[] = "__OTR__ast_map/D_MAP_605DE10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605E610[] = "__OTR__ast_map/D_MAP_605E610";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605EE10[] = "__OTR__ast_map/D_MAP_605EE10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605F610[] = "__OTR__ast_map/D_MAP_605F610";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_605FE10[] = "__OTR__ast_map/D_MAP_605FE10";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMapMeteorDL[] = "__OTR__ast_map/aMapMeteorDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_map_seg6_vtx_60668[] = "__OTR__ast_map/ast_map_seg6_vtx_60668";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_MAP_6060698[] = "__OTR__ast_map/D_MAP_6060698";
|
||||
|
498
include/assets/ast_meteo.h
Normal file
498
include/assets/ast_meteo.h
Normal file
@ -0,0 +1,498 @@
|
||||
#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 aMeTitleCardTex[] = "__OTR__ast_meteo/aMeTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6000A80[] = "__OTR__ast_meteo/D_ME_6000A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AD0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6000B10[] = "__OTR__ast_meteo/D_ME_6000B10";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeCrusherDL[] = "__OTR__ast_meteo/aMeCrusherDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1BF8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1BF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1DF8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1FD8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1FD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_21D8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_21D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23A8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2578[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2578";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2758[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2758";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2958[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2958";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2B48[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2D48[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2D48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2F48[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2F48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3148[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3148";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3348[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3348";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3538[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3538";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_35D8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_35D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_37D8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_37D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_39A8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_39A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3A08[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3A08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3BD8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3BD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3D68[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3E98[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3E98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4098[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4098";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4298[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4448[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4448";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4558[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4558";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4638[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4638";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6004738[] = "__OTR__ast_meteo/D_ME_6004738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6004F38[] = "__OTR__ast_meteo/D_ME_6004F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6005738[] = "__OTR__ast_meteo/D_ME_6005738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6005F38[] = "__OTR__ast_meteo/D_ME_6005F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6006738[] = "__OTR__ast_meteo/D_ME_6006738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6006F38[] = "__OTR__ast_meteo/D_ME_6006F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6006FB8[] = "__OTR__ast_meteo/D_ME_6006FB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6007038[] = "__OTR__ast_meteo/D_ME_6007038";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6007838[] = "__OTR__ast_meteo/D_ME_6007838";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60078B8[] = "__OTR__ast_meteo/D_ME_60078B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60080C0[] = "__OTR__ast_meteo/D_ME_60080C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8378[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8378";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_83C8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_83C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_85C8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_85C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_86A8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_86A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8888[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8888";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_88B8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_88B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8918[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8918";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8958[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8958";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_89B8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_89B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6008A18[] = "__OTR__ast_meteo/D_ME_6008A18";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeFlipBot1DL[] = "__OTR__ast_meteo/aMeFlipBot1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8C78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8C78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8E78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8E78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8EA8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8F78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8F78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8FB8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8FB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_9198[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_9198";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6009228[] = "__OTR__ast_meteo/D_ME_6009228";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6009A28[] = "__OTR__ast_meteo/D_ME_6009A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6009C28[] = "__OTR__ast_meteo/D_ME_6009C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeFlipBot2DL[] = "__OTR__ast_meteo/aMeFlipBot2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_9E90[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_9E90";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeBigMeteorDL[] = "__OTR__ast_meteo/aMeBigMeteorDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A0D0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A2B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A2B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A490[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A490";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A670[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A670";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A850[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A850";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AA30[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AA30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AC10[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AC10";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor7DL[] = "__OTR__ast_meteo/aMeMeteor7DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AD90[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AD90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AF90[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AF90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_B190[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_B190";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_B390[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_B390";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_600B540[] = "__OTR__ast_meteo/D_ME_600B540";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeSecretMarker2DL[] = "__OTR__ast_meteo/aMeSecretMarker2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_BDC0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_BDC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_600BF30[] = "__OTR__ast_meteo/D_ME_600BF30";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeRockGull2DL[] = "__OTR__ast_meteo/aMeRockGull2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C1A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C1A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor6DL[] = "__OTR__ast_meteo/aMeMeteor6DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C358[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C358";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C548[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C548";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeRockGull3DL[] = "__OTR__ast_meteo/aMeRockGull3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C7E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C7E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C9D0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C9D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeRockGull1DL[] = "__OTR__ast_meteo/aMeRockGull1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_CB30[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_CB30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_CD30[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_CD30";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteorShower3DL[] = "__OTR__ast_meteo/aMeMeteorShower3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_CDB8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_CDB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_600CDE8[] = "__OTR__ast_meteo/D_ME_600CDE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_600DDF0[] = "__OTR__ast_meteo/D_ME_600DDF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E038[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E038";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E078[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E078";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E0B8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E0B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E0F8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E0F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E138[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E138";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E178[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E178";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E1B8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E1B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E1F8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E1F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_600E238[] = "__OTR__ast_meteo/D_ME_600E238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_600F238[] = "__OTR__ast_meteo/D_ME_600F238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6010238[] = "__OTR__ast_meteo/D_ME_6010238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6011238[] = "__OTR__ast_meteo/D_ME_6011238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6012238[] = "__OTR__ast_meteo/D_ME_6012238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6013238[] = "__OTR__ast_meteo/D_ME_6013238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6014238[] = "__OTR__ast_meteo/D_ME_6014238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6015238[] = "__OTR__ast_meteo/D_ME_6015238";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteorShower2DL[] = "__OTR__ast_meteo/aMeMeteorShower2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_16298[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_16298";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60162C8[] = "__OTR__ast_meteo/D_ME_60162C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60172C8[] = "__OTR__ast_meteo/D_ME_60172C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteorShower1DL[] = "__OTR__ast_meteo/aMeMeteorShower1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_17B28[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_17B28";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor3DL[] = "__OTR__ast_meteo/aMeMeteor3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_17C98[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_17C98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_17CC8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_17CC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_17EB8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_17EB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_180A8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_180A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18288[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18288";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeLaserCannon2DL[] = "__OTR__ast_meteo/aMeLaserCannon2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18620[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18620";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_187A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_187A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_187E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_187E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_188A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_188A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18920[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18920";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor5DL[] = "__OTR__ast_meteo/aMeMeteor5DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_189F0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_189F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18BD0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor1DL[] = "__OTR__ast_meteo/aMeMeteor1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18D18[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18F08[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18F08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_190F8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_190F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_192F8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_192F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor4DL[] = "__OTR__ast_meteo/aMeMeteor4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_194E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_194E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_196D0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_196D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6019880[] = "__OTR__ast_meteo/D_ME_6019880";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_601A080[] = "__OTR__ast_meteo/D_ME_601A080";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeSecretMarker1DL[] = "__OTR__ast_meteo/aMeSecretMarker1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1A988[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1A988";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1AB78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1AB78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1AD58[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1AD58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1ADF8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1ADF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteoTunnelDL[] = "__OTR__ast_meteo/aMeMeteoTunnelDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1B2B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1B2B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1B4B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1B4B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1B6B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1B6B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1B8B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1B8B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1BAB0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1BAB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1BCB0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1BCB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1BEB0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1BEB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C0B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C0B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C2A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C2A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C480[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C480";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C680[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C680";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C880[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C880";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_601C8E0[] = "__OTR__ast_meteo/D_ME_601C8E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_601D800[] = "__OTR__ast_meteo/D_ME_601D800";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeHopBotAnim[] = "__OTR__ast_meteo/aMeHopBotAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeHopBotSkel[] = "__OTR__ast_meteo/aMeHopBotSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_601EA00[] = "__OTR__ast_meteo/D_ME_601EA00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1EA58[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1EA58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_601EA98[] = "__OTR__ast_meteo/D_ME_601EA98";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor2DL[] = "__OTR__ast_meteo/aMeMeteor2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F478[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F478";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F668[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F668";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F698[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F6D8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F6D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F718[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F718";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_601F778[] = "__OTR__ast_meteo/D_ME_601F778";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_601FF80[] = "__OTR__ast_meteo/D_ME_601FF80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1FFD8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1FFD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6020008[] = "__OTR__ast_meteo/D_ME_6020008";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeCorneriaBgDL[] = "__OTR__ast_meteo/aMeCorneriaBgDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_208A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_208A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_208E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_208E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeCorneriaBg1Tex[] = "__OTR__ast_meteo/aMeCorneriaBg1Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeCorneriaBg2Tex[] = "__OTR__ast_meteo/aMeCorneriaBg2Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeLaserCannon1DL[] = "__OTR__ast_meteo/aMeLaserCannon1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_22AB0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_22AB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_22C30[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_22C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_22E20[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_22E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6022E50[] = "__OTR__ast_meteo/D_ME_6022E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_22F78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_22F78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23138[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23138";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60231C0[] = "__OTR__ast_meteo/D_ME_60231C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23230[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23230";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6023290[] = "__OTR__ast_meteo/D_ME_6023290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23300[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23300";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6023360[] = "__OTR__ast_meteo/D_ME_6023360";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23488[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23488";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23668[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23668";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60236F0[] = "__OTR__ast_meteo/D_ME_60236F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23748[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23748";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6023788[] = "__OTR__ast_meteo/D_ME_6023788";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6023810[] = "__OTR__ast_meteo/D_ME_6023810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23868[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23868";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60238A8[] = "__OTR__ast_meteo/D_ME_60238A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60240B0[] = "__OTR__ast_meteo/D_ME_60240B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_242C0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_242C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_243E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_243E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24580[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24580";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24660[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24860[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24860";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_248F0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_248F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6024AD0[] = "__OTR__ast_meteo/D_ME_6024AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24B28[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24B28";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMolarRockDL[] = "__OTR__ast_meteo/aMeMolarRockDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24D10[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24F10[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_25110[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_25110";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_252F0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_252F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6025350[] = "__OTR__ast_meteo/D_ME_6025350";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteoBallDL[] = "__OTR__ast_meteo/aMeMeteoBallDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_25BA8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_25BA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6025BE8[] = "__OTR__ast_meteo/D_ME_6025BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60263F0[] = "__OTR__ast_meteo/D_ME_60263F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_26448[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_26448";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6026478[] = "__OTR__ast_meteo/D_ME_6026478";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6026C80[] = "__OTR__ast_meteo/D_ME_6026C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6026CC4[] = "__OTR__ast_meteo/D_ME_6026CC4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_602B148[] = "__OTR__ast_meteo/D_ME_602B148";
|
||||
|
||||
static const char D_ME_602F3AC[] = "__OTR__ast_meteo/D_ME_602F3AC";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeFlipBotHitbox[] = "__OTR__ast_meteo/aMeFlipBotHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_602F638[] = "__OTR__ast_meteo/D_ME_602F638";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteoBallHitbox[] = "__OTR__ast_meteo/aMeMeteoBallHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeHopBotHitbox[] = "__OTR__ast_meteo/aMeHopBotHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor1Hitbox[] = "__OTR__ast_meteo/aMeMeteor1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeMeteor2Hitbox[] = "__OTR__ast_meteo/aMeMeteor2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeLaserCannon1Hitbox[] = "__OTR__ast_meteo/aMeLaserCannon1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeLaserCannon2Hitbox[] = "__OTR__ast_meteo/aMeLaserCannon2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeCrusherHitbox[] = "__OTR__ast_meteo/aMeCrusherHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMeCrusherShieldHitbox[] = "__OTR__ast_meteo/aMeCrusherShieldHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_602FA9C[] = "__OTR__ast_meteo/D_ME_602FA9C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60300C8[] = "__OTR__ast_meteo/D_ME_60300C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6030208[] = "__OTR__ast_meteo/D_ME_6030208";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_6030550[] = "__OTR__ast_meteo/D_ME_6030550";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_60305DC[] = "__OTR__ast_meteo/D_ME_60305DC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ME_603184C[] = "__OTR__ast_meteo/D_ME_603184C";
|
||||
|
137
include/assets/ast_option.h
Normal file
137
include/assets/ast_option.h
Normal file
@ -0,0 +1,137 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8000000[] = "__OTR__ast_option/D_OPT_8000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8000680[] = "__OTR__ast_option/D_OPT_8000680";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80006A0[] = "__OTR__ast_option/D_OPT_80006A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80017A0[] = "__OTR__ast_option/D_OPT_80017A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80017C0[] = "__OTR__ast_option/D_OPT_80017C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80038C0[] = "__OTR__ast_option/D_OPT_80038C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aNdTex[] = "__OTR__ast_option/aNdTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aNdTLUT[] = "__OTR__ast_option/aNdTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRdTex[] = "__OTR__ast_option/aRdTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRdTLUT[] = "__OTR__ast_option/aRdTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSpeakerCenterTex[] = "__OTR__ast_option/aSpeakerCenterTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSpeakerCenterTLUT[] = "__OTR__ast_option/aSpeakerCenterTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStTex[] = "__OTR__ast_option/aStTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStTLUT[] = "__OTR__ast_option/aStTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aThTex[] = "__OTR__ast_option/aThTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aThTLUT[] = "__OTR__ast_option/aThTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aMainGameCardTex[] = "__OTR__ast_option/aMainGameCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTrainingCardTex[] = "__OTR__ast_option/aTrainingCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsCardTex[] = "__OTR__ast_option/aVsCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aRankingCardTex[] = "__OTR__ast_option/aRankingCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSoundCardTex[] = "__OTR__ast_option/aSoundCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aDataCardTex[] = "__OTR__ast_option/aDataCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aExpertCardTex[] = "__OTR__ast_option/aExpertCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsPointMatchCardTex[] = "__OTR__ast_option/aVsPointMatchCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsBattleRoyalCardTex[] = "__OTR__ast_option/aVsBattleRoyalCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsTimeTrialCardTex[] = "__OTR__ast_option/aVsTimeTrialCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8005CD0[] = "__OTR__ast_option/D_OPT_8005CD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8006280[] = "__OTR__ast_option/D_OPT_8006280";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80064F0[] = "__OTR__ast_option/D_OPT_80064F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80069C0[] = "__OTR__ast_option/D_OPT_80069C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8006D10[] = "__OTR__ast_option/D_OPT_8006D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char aBtoCancelTex[] = "__OTR__ast_option/aBtoCancelTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8007210[] = "__OTR__ast_option/D_OPT_8007210";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80076E0[] = "__OTR__ast_option/D_OPT_80076E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80079F0[] = "__OTR__ast_option/D_OPT_80079F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAtoConfirmTex[] = "__OTR__ast_option/aAtoConfirmTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80084B0[] = "__OTR__ast_option/D_OPT_80084B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8008DA0[] = "__OTR__ast_option/D_OPT_8008DA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8009980[] = "__OTR__ast_option/D_OPT_8009980";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8009B00[] = "__OTR__ast_option/D_OPT_8009B00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8009CE0[] = "__OTR__ast_option/D_OPT_8009CE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_800B680[] = "__OTR__ast_option/D_OPT_800B680";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_800CD90[] = "__OTR__ast_option/D_OPT_800CD90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_800D070[] = "__OTR__ast_option/D_OPT_800D070";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_800D170[] = "__OTR__ast_option/D_OPT_800D170";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_800D1F0[] = "__OTR__ast_option/D_OPT_800D1F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_800E0F0[] = "__OTR__ast_option/D_OPT_800E0F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aArrowTex[] = "__OTR__ast_option/aArrowTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_800E170[] = "__OTR__ast_option/D_OPT_800E170";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSliderFrameTex[] = "__OTR__ast_option/aSliderFrameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSliderTex[] = "__OTR__ast_option/aSliderTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSpeakerTex[] = "__OTR__ast_option/aSpeakerTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSpeakerTLUT[] = "__OTR__ast_option/aSpeakerTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80147F0[] = "__OTR__ast_option/D_OPT_80147F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_option_seg8_vtx_00014B50[] = "__OTR__ast_option/ast_option_seg8_vtx_00014B50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8015310[] = "__OTR__ast_option/D_OPT_8015310";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8015390[] = "__OTR__ast_option/D_OPT_8015390";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80153B0[] = "__OTR__ast_option/D_OPT_80153B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8015430[] = "__OTR__ast_option/D_OPT_8015430";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8015450[] = "__OTR__ast_option/D_OPT_8015450";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_8015550[] = "__OTR__ast_option/D_OPT_8015550";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_option_seg8_vtx_155A8[] = "__OTR__ast_option/ast_option_seg8_vtx_155A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_OPT_80155E8[] = "__OTR__ast_option/D_OPT_80155E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLightningDL[] = "__OTR__ast_option/aLightningDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_option_seg8_vtx_15E48[] = "__OTR__ast_option/ast_option_seg8_vtx_15E48";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLightningTex[] = "__OTR__ast_option/aLightningTex";
|
||||
|
1637
include/assets/ast_radio.h
Normal file
1637
include/assets/ast_radio.h
Normal file
File diff suppressed because it is too large
Load Diff
600
include/assets/ast_sector_x.h
Normal file
600
include/assets/ast_sector_x.h
Normal file
@ -0,0 +1,600 @@
|
||||
#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 aSxTitleCardTex[] = "__OTR__ast_sector_x/aSxTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxSpaceMineDL[] = "__OTR__ast_sector_x/aSxSpaceMineDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_890[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_890";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60008C0[] = "__OTR__ast_sector_x/D_SX_60008C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60010C0[] = "__OTR__ast_sector_x/D_SX_60010C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1110[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1110";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6001150[] = "__OTR__ast_sector_x/D_SX_6001150";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxLaserDestroyedDL[] = "__OTR__ast_sector_x/aSxLaserDestroyedDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_19B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_19B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6001AD8[] = "__OTR__ast_sector_x/D_SX_6001AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxWatchPostDL[] = "__OTR__ast_sector_x/aSxWatchPostDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1E40[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1E40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1E80[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1FB0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1FB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_2090[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_2090";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60020C0[] = "__OTR__ast_sector_x/D_SX_60020C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60022C0[] = "__OTR__ast_sector_x/D_SX_60022C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60024C0[] = "__OTR__ast_sector_x/D_SX_60024C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60026C0[] = "__OTR__ast_sector_x/D_SX_60026C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60028C0[] = "__OTR__ast_sector_x/D_SX_60028C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6002AC0[] = "__OTR__ast_sector_x/D_SX_6002AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_2E88[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_2E88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60036E8[] = "__OTR__ast_sector_x/D_SX_60036E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6003EE8[] = "__OTR__ast_sector_x/D_SX_6003EE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60046E8[] = "__OTR__ast_sector_x/D_SX_60046E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6004EE8[] = "__OTR__ast_sector_x/D_SX_6004EE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6005EE8[] = "__OTR__ast_sector_x/D_SX_6005EE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxLaserDL[] = "__OTR__ast_sector_x/aSxLaserDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6760[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6760";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6006810[] = "__OTR__ast_sector_x/D_SX_6006810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6A38[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6A38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6B18[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6C18[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6C18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6C58[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6C58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6DF8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6FF8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6FF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6007128[] = "__OTR__ast_sector_x/D_SX_6007128";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6007928[] = "__OTR__ast_sector_x/D_SX_6007928";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6008128[] = "__OTR__ast_sector_x/D_SX_6008128";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6008928[] = "__OTR__ast_sector_x/D_SX_6008928";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6008B30[] = "__OTR__ast_sector_x/D_SX_6008B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_8E28[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_8E28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_8F18[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_8F18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_8F98[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_8F98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9188[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9188";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9378[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9378";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_93F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_93F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9468[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9468";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_94E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_94E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9518[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9518";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6009548[] = "__OTR__ast_sector_x/D_SX_6009548";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6009748[] = "__OTR__ast_sector_x/D_SX_6009748";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseFloor1DL[] = "__OTR__ast_sector_x/aSxBaseFloor1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9AA8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9AA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9B28[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9B28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9B68[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9B68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9BE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6009C30[] = "__OTR__ast_sector_x/D_SX_6009C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9C80[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6009CC0[] = "__OTR__ast_sector_x/D_SX_6009CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6009FF8[] = "__OTR__ast_sector_x/D_SX_6009FF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_600A2D4[] = "__OTR__ast_sector_x/D_SX_600A2D4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWall3DL[] = "__OTR__ast_sector_x/aSxBaseWall3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_A3F0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_A3F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_A430[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_A430";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_A530[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_A530";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_600A570[] = "__OTR__ast_sector_x/D_SX_600A570";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_600AD70[] = "__OTR__ast_sector_x/D_SX_600AD70";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWall1DL[] = "__OTR__ast_sector_x/aSxBaseWall1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B088[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B088";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B0C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B0C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B118[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B118";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWall2DL[] = "__OTR__ast_sector_x/aSxBaseWall2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B3C0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B3C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B400[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B400";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B500[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B500";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWall4DL[] = "__OTR__ast_sector_x/aSxBaseWall4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B6C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B6C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B6F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B6F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B778[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B778";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B7A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B7A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B7E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B7E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBorzoiFighterDL[] = "__OTR__ast_sector_x/aSxBorzoiFighterDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BA30[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BA30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BC10[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BC10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BD10[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BD10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BD60[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BD60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BDC0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BDC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BE90[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BE90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_600C000[] = "__OTR__ast_sector_x/D_SX_600C000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C1B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C1B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C380[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C380";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C3C0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C3C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C4E0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C4E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C550[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C550";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_600C5A0[] = "__OTR__ast_sector_x/D_SX_600C5A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_600F890[] = "__OTR__ast_sector_x/D_SX_600F890";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_600F8A0[] = "__OTR__ast_sector_x/D_SX_600F8A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_F8F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_F8F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_600F938[] = "__OTR__ast_sector_x/D_SX_600F938";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6010140[] = "__OTR__ast_sector_x/D_SX_6010140";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_10220[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_10220";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_10330[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_10330";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_103B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_103B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_10470[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_10470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_10560[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_10560";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60105A0[] = "__OTR__ast_sector_x/D_SX_60105A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60123BC[] = "__OTR__ast_sector_x/D_SX_60123BC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6013798[] = "__OTR__ast_sector_x/D_SX_6013798";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6013820[] = "__OTR__ast_sector_x/D_SX_6013820";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_601390C[] = "__OTR__ast_sector_x/D_SX_601390C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60158C4[] = "__OTR__ast_sector_x/D_SX_60158C4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6016E28[] = "__OTR__ast_sector_x/D_SX_6016E28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_16E40[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_16E40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_16F78[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_16F78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17138[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17138";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_171B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_171B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_17240[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_17240";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17330[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17330";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17470[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_17570[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_17570";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_176F0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_176F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_177B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_177B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17880[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_178E0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_178E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_17A20[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_17A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17BC0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17BC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17DC0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17DC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17E40[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17E40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17EA0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17EA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_18060[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_18060";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_18228[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_18228";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_18428[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_18428";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_184D8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_184D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_185F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_185F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_18678[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_18678";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_601AA28[] = "__OTR__ast_sector_x/D_SX_601AA28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_601C690[] = "__OTR__ast_sector_x/D_SX_601C690";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_1C6A0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_1C6A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1C7D8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1C7D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1C948[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1C948";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1C9C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1C9C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_1CA50[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_1CA50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1CB38[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1CB38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1CC78[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1CC78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_1CD80[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_1CD80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1CF00[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1CF00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1CFD0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1CFD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D0D0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D130[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_1D260[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_1D260";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D400[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D400";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D5E0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D5E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D690[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D690";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D6F0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D6F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60206DC[] = "__OTR__ast_sector_x/D_SX_60206DC";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxSpyborgSkel[] = "__OTR__ast_sector_x/aSxSpyborgSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWallTile1DL[] = "__OTR__ast_sector_x/aSxBaseWallTile1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_20E30[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_20E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_20E70[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_20E70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_20F70[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_20F70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6020FB0[] = "__OTR__ast_sector_x/D_SX_6020FB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6021ED0[] = "__OTR__ast_sector_x/D_SX_6021ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxCanineDL[] = "__OTR__ast_sector_x/aSxCanineDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23028[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23028";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23068[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23068";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_230B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_230B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23188[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23188";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_231C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_231C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23268[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23268";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_232C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_232C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23378[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23378";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxSpyEyeDL[] = "__OTR__ast_sector_x/aSxSpyEyeDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_236D0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_236D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23790[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23790";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23860[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23860";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23960[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23960";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23B20[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23B20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6023C30[] = "__OTR__ast_sector_x/D_SX_6023C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseDebris2DL[] = "__OTR__ast_sector_x/aSxBaseDebris2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23EB0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23EB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_24030[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_24030";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24168[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24168";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_242E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_242E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24368[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24368";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_243F0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_243F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24528[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24528";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_246A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_246A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24728[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24728";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_247B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_247B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_248E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_248E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24A78[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24A78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24AF8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24AF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_24B80[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_24B80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24CB8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24CB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24E58[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24E58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24ED8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24ED8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_24F60[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_24F60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25098[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25098";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25248[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25248";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_252C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_252C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_25350[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_25350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25488[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25488";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25628[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25628";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_256A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_256A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_25730[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_25730";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25868[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25868";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25A08[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25A08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25A88[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25A88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_25B10[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_25B10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25C48[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25C48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25DE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25DE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25E68[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25E68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_25EF0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_25EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26028[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26028";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_261B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_261B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26238[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26238";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_262C0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_262C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_263F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_263F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_265A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_265A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26628[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26628";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_266B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_266B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_267E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_267E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26998[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26998";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26A18[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26A18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_26AA0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_26AA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26BD8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26BD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26D88[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26D88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26E08[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26E08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_26E90[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_26E90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26FC8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26FC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27178[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27178";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_271F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_271F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_27280[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_27280";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_273B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_273B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27558[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27558";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_275D8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_275D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_27660[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_27660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27798[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27798";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27908[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27908";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27988[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27988";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_27A10[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_27A10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27B48[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27CE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27CE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27D68[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_27DF0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_27DF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27F28[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27F28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_280B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_280B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28138[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28138";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_281C0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_281C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28328[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28328";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_284A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_284A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28528[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28528";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28568[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28568";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseDebris1DL[] = "__OTR__ast_sector_x/aSxBaseDebris1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_287E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_287E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_289E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_289E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28BE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28DE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28DE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28E68[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28E68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28FD8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28FD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6029098[] = "__OTR__ast_sector_x/D_SX_6029098";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_60292A0[] = "__OTR__ast_sector_x/D_SX_60292A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29380[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29380";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29420[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29420";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_294D0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_294D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29610[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29610";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29710[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29710";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29810[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29810";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6029890[] = "__OTR__ast_sector_x/D_SX_6029890";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_298E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_298E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6029918[] = "__OTR__ast_sector_x/D_SX_6029918";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_602A120[] = "__OTR__ast_sector_x/D_SX_602A120";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_602A164[] = "__OTR__ast_sector_x/D_SX_602A164";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_602F18C[] = "__OTR__ast_sector_x/D_SX_602F18C";
|
||||
|
||||
static const char D_SX_60320D0[] = "__OTR__ast_sector_x/D_SX_60320D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6032328[] = "__OTR__ast_sector_x/D_SX_6032328";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxWarpGateHitbox[] = "__OTR__ast_sector_x/aSxWarpGateHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6032408[] = "__OTR__ast_sector_x/D_SX_6032408";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxSpyborgLeftArmHitbox[] = "__OTR__ast_sector_x/aSxSpyborgLeftArmHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxSpyborgRightArmHitbox[] = "__OTR__ast_sector_x/aSxSpyborgRightArmHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxSpyborgHitbox[] = "__OTR__ast_sector_x/aSxSpyborgHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_603265C[] = "__OTR__ast_sector_x/D_SX_603265C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SX_6032768[] = "__OTR__ast_sector_x/D_SX_6032768";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxLaserHitbox[] = "__OTR__ast_sector_x/aSxLaserHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseFloor1Hitbox[] = "__OTR__ast_sector_x/aSxBaseFloor1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWall2Hitbox[] = "__OTR__ast_sector_x/aSxBaseWall2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWall3Hitbox[] = "__OTR__ast_sector_x/aSxBaseWall3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWallTile1Hitbox[] = "__OTR__ast_sector_x/aSxBaseWallTile1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWall4Hitbox[] = "__OTR__ast_sector_x/aSxBaseWall4Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseWall1Hitbox[] = "__OTR__ast_sector_x/aSxBaseWall1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxWatchPostHitbox[] = "__OTR__ast_sector_x/aSxWatchPostHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxSpaceMineHitbox[] = "__OTR__ast_sector_x/aSxSpaceMineHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseDebris2Hitbox[] = "__OTR__ast_sector_x/aSxBaseDebris2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSxBaseDebris1Hitbox[] = "__OTR__ast_sector_x/aSxBaseDebris1Hitbox";
|
||||
|
647
include/assets/ast_sector_y.h
Normal file
647
include/assets/ast_sector_y.h
Normal file
@ -0,0 +1,647 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
#include "sf64level.h"
|
||||
#include "sf64event.h"
|
||||
#include "sf64player.h"
|
||||
#include "sf64audio_external.h"
|
||||
#include "sf64mesg.h"
|
||||
#include "sf64mesg.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyTitleCardTex[] = "__OTR__ast_sector_y/aSyTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6000840[] = "__OTR__ast_sector_y/D_SY_6000840";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6001840[] = "__OTR__ast_sector_y/D_SY_6001840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1890[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1890";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60018D0[] = "__OTR__ast_sector_y/D_SY_60018D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6003348[] = "__OTR__ast_sector_y/D_SY_6003348";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60034C4[] = "__OTR__ast_sector_y/D_SY_60034C4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShipWindowsDL[] = "__OTR__ast_sector_y/aSyShipWindowsDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3580[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3580";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3620[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3620";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip3DestroyedDL[] = "__OTR__ast_sector_y/aSyShip3DestroyedDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3A18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3A18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3AD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3CD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3D18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3EF8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3EF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_40C8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_40C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_42C8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_42C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_4388[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_4388";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_4568[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_4568";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_4758[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_4758";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6004958[] = "__OTR__ast_sector_y/D_SY_6004958";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6005158[] = "__OTR__ast_sector_y/D_SY_6005158";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip4DL[] = "__OTR__ast_sector_y/aSyShip4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_55C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_55C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_5790[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_5790";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_5820[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_5820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_58A0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_58A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_59E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_59E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_5AE0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_5AE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_5BA0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_5BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6005BE0[] = "__OTR__ast_sector_y/D_SY_6005BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6006BE0[] = "__OTR__ast_sector_y/D_SY_6006BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60073E0[] = "__OTR__ast_sector_y/D_SY_60073E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60083E0[] = "__OTR__ast_sector_y/D_SY_60083E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6008BE0[] = "__OTR__ast_sector_y/D_SY_6008BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6008FE0[] = "__OTR__ast_sector_y/D_SY_6008FE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip1DL[] = "__OTR__ast_sector_y/aSyShip1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_9BB0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_9BB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_9DB0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_9DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_9F30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_9F30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A070[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A070";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A240[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A240";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A440[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A440";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A500[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A500";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A700[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A780[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A840[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_AA40[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_AA40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_AA80[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_AA80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_600AAC0[] = "__OTR__ast_sector_y/D_SY_600AAC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_600BAC0[] = "__OTR__ast_sector_y/D_SY_600BAC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_600CAC0[] = "__OTR__ast_sector_y/D_SY_600CAC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_600DAC0[] = "__OTR__ast_sector_y/D_SY_600DAC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_600E2C0[] = "__OTR__ast_sector_y/D_SY_600E2C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_600EAC0[] = "__OTR__ast_sector_y/D_SY_600EAC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_600F2C0[] = "__OTR__ast_sector_y/D_SY_600F2C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip4DestroyedDL[] = "__OTR__ast_sector_y/aSyShip4DestroyedDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_F9C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_F9C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FB90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FB90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FC30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FC30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FD90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FD90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FE10[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FE10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FF90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FF90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10110[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10110";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_101D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_101D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip3DL[] = "__OTR__ast_sector_y/aSyShip3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_106B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_106B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_108B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_108B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10938[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10938";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10B18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10D18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10F18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10F18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10FD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10FD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_111D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_111D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_113D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_113D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_114D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_114D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_11558[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_11558";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6011758[] = "__OTR__ast_sector_y/D_SY_6011758";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60117D8[] = "__OTR__ast_sector_y/D_SY_60117D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60119D8[] = "__OTR__ast_sector_y/D_SY_60119D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60121E0[] = "__OTR__ast_sector_y/D_SY_60121E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_124C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_124C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12620[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12620";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12650[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12650";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_126A0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_126A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12720[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12720";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_127E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_127E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12810[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12840[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12870[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12870";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60128A0[] = "__OTR__ast_sector_y/D_SY_60128A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60130A0[] = "__OTR__ast_sector_y/D_SY_60130A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60132A0[] = "__OTR__ast_sector_y/D_SY_60132A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_133C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_133C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_13440[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_13440";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_13580[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_13580";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6013600[] = "__OTR__ast_sector_y/D_SY_6013600";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_136F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_136F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_13730[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_13730";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_13790[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_13790";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6013840[] = "__OTR__ast_sector_y/D_SY_6013840";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6014040[] = "__OTR__ast_sector_y/D_SY_6014040";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6014240[] = "__OTR__ast_sector_y/D_SY_6014240";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6014A40[] = "__OTR__ast_sector_y/D_SY_6014A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_14AA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_14AA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6014B48[] = "__OTR__ast_sector_y/D_SY_6014B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6014BD0[] = "__OTR__ast_sector_y/D_SY_6014BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_14F10[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_14F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_150C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_150C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_152B0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_152B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_15490[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_15490";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_155B0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_155B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_15630[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_15630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_15700[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_15700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_15740[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_15740";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_157A0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_157A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_158E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_158E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6015960[] = "__OTR__ast_sector_y/D_SY_6015960";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6015B60[] = "__OTR__ast_sector_y/D_SY_6015B60";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyRobot4DL[] = "__OTR__ast_sector_y/aSyRobot4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_163C8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_163C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_164E8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_164E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_166E8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_166E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_168E8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_168E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_16AE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_16AE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_16CD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_16CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_16ED8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_16ED8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_170B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_170B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17298[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17478[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17478";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17578[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17578";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17758[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17758";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_178D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_178D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17918[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17918";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17AD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17CA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17CE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17CE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17EA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18078[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18078";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18258[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18258";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60183B0[] = "__OTR__ast_sector_y/D_SY_60183B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18568[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18568";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18618[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18618";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18778[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18778";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_187B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_187B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_187F8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_187F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShipMissileDL[] = "__OTR__ast_sector_y/aSyShipMissileDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18A28[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18C18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18C18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18C78[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18C78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18E28[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18E28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6018F30[] = "__OTR__ast_sector_y/D_SY_6018F30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6019E50[] = "__OTR__ast_sector_y/D_SY_6019E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyDebrisDL[] = "__OTR__ast_sector_y/aSyDebrisDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1ADC8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1ADC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_601AE08[] = "__OTR__ast_sector_y/D_SY_601AE08";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip2SpriteDL[] = "__OTR__ast_sector_y/aSyShip2SpriteDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1B660[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1B660";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_601B6A0[] = "__OTR__ast_sector_y/D_SY_601B6A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip3SpriteDL[] = "__OTR__ast_sector_y/aSyShip3SpriteDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1C6F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1C6F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_601C730[] = "__OTR__ast_sector_y/D_SY_601C730";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip2DL[] = "__OTR__ast_sector_y/aSyShip2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1D9F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1D9F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1DAF0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1DAF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1DCF0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1DCF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1DED0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1DED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1DFD0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1DFD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1E110[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1E110";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1E250[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1E250";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_601F3B8[] = "__OTR__ast_sector_y/D_SY_601F3B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSySaruzinDL[] = "__OTR__ast_sector_y/aSySaruzinDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1F750[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1F750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1F950[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1F950";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1FB50[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1FB50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1FD50[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1FD50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1FF50[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1FF50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1FF90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1FF90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20090[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_201D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_201D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_202D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_202D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_204D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_204D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyLaserTurretDL[] = "__OTR__ast_sector_y/aSyLaserTurretDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20700[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20830[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20830";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20870[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20870";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyRobotSpriteFrontDL[] = "__OTR__ast_sector_y/aSyRobotSpriteFrontDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20A88[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20A88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20AC8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20AC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6020B08[] = "__OTR__ast_sector_y/D_SY_6020B08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6021B08[] = "__OTR__ast_sector_y/D_SY_6021B08";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyRobotSpriteSideDL[] = "__OTR__ast_sector_y/aSyRobotSpriteSideDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_22BA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_22BA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_22BE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_22BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6022C28[] = "__OTR__ast_sector_y/D_SY_6022C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6023C28[] = "__OTR__ast_sector_y/D_SY_6023C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60258A0[] = "__OTR__ast_sector_y/D_SY_60258A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602645C[] = "__OTR__ast_sector_y/D_SY_602645C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60265B4[] = "__OTR__ast_sector_y/D_SY_60265B4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602738C[] = "__OTR__ast_sector_y/D_SY_602738C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60273A0[] = "__OTR__ast_sector_y/D_SY_60273A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27600[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27600";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_276E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_276E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27710[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27710";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27790[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27790";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_277D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_277D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27880[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27920[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27920";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6027960[] = "__OTR__ast_sector_y/D_SY_6027960";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27BC0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27BC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27CA0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27CD0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27CD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27D50[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27D50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27D90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27D90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27E30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27ED0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_gfx_27F10[] = "__OTR__ast_sector_y/ast_sector_y_seg6_gfx_27F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_28108[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_28108";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_281A8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_281A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_283A8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_283A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_28468[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_28468";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_285E8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_285E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_28628[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_28628";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6028668[] = "__OTR__ast_sector_y/D_SY_6028668";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6028E70[] = "__OTR__ast_sector_y/D_SY_6028E70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29068[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29068";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_290B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_290B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29118[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29118";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29208[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29208";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29298[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_292D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_292D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29318[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29318";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6029B48[] = "__OTR__ast_sector_y/D_SY_6029B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602A2CC[] = "__OTR__ast_sector_y/D_SY_602A2CC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602A2E0[] = "__OTR__ast_sector_y/D_SY_602A2E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A430[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A430";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A4B0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A4B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A4F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A4F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A6E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A6E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602A720[] = "__OTR__ast_sector_y/D_SY_602A720";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A7D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A7D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A870[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A870";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602A8C0[] = "__OTR__ast_sector_y/D_SY_602A8C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AAF8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AAF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2ABB8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2ABB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AC38[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AC38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2ACB8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2ACB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AD18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AD18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AD98[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AD98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AF98[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AF98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602AFF8[] = "__OTR__ast_sector_y/D_SY_602AFF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602B778[] = "__OTR__ast_sector_y/D_SY_602B778";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602B8DC[] = "__OTR__ast_sector_y/D_SY_602B8DC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602B8F0[] = "__OTR__ast_sector_y/D_SY_602B8F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BB28[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BB28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BBE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BBE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BC68[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BC68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BCE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BCE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BD48[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BD48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BDC8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BDC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BFA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BFA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602CEB4[] = "__OTR__ast_sector_y/D_SY_602CEB4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602D140[] = "__OTR__ast_sector_y/D_SY_602D140";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602D194[] = "__OTR__ast_sector_y/D_SY_602D194";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D1F8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D1F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602D238[] = "__OTR__ast_sector_y/D_SY_602D238";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602D340[] = "__OTR__ast_sector_y/D_SY_602D340";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D540[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D540";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D590[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D590";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D5F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D5F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D6F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D6F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D770[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D7B0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D7B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D7F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D7F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602D830[] = "__OTR__ast_sector_y/D_SY_602D830";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D9A0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D9A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D9D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D9D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DA00[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DA00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DA80[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DA80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DBC0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DBC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602DC40[] = "__OTR__ast_sector_y/D_SY_602DC40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DD30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DD30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DDB0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DDB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DE30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DE30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602DE70[] = "__OTR__ast_sector_y/D_SY_602DE70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DF60[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DF60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DFE0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DFE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E060[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E060";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602E0A0[] = "__OTR__ast_sector_y/D_SY_602E0A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E208[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E208";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E288[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E288";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E3C8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E3C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E448[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E448";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E478[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E478";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602E4B0[] = "__OTR__ast_sector_y/D_SY_602E4B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_602E4F4[] = "__OTR__ast_sector_y/D_SY_602E4F4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6030B14[] = "__OTR__ast_sector_y/D_SY_6030B14";
|
||||
|
||||
static const char D_SY_6032E18[] = "__OTR__ast_sector_y/D_SY_6032E18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6033070[] = "__OTR__ast_sector_y/D_SY_6033070";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6033E08[] = "__OTR__ast_sector_y/D_SY_6033E08";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyRobotHitbox[] = "__OTR__ast_sector_y/aSyRobotHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60340C0[] = "__OTR__ast_sector_y/D_SY_60340C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyRobot4Hitbox[] = "__OTR__ast_sector_y/aSyRobot4Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60341A8[] = "__OTR__ast_sector_y/D_SY_60341A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_603421C[] = "__OTR__ast_sector_y/D_SY_603421C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_60342A0[] = "__OTR__ast_sector_y/D_SY_60342A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SY_6034304[] = "__OTR__ast_sector_y/D_SY_6034304";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyScenery156Hitbox[] = "__OTR__ast_sector_y/aSyScenery156Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyLaserTurretHitbox[] = "__OTR__ast_sector_y/aSyLaserTurretHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip1Hitbox[] = "__OTR__ast_sector_y/aSyShip1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip2Hitbox[] = "__OTR__ast_sector_y/aSyShip2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip3Hitbox[] = "__OTR__ast_sector_y/aSyShip3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip3DestroyedHitbox[] = "__OTR__ast_sector_y/aSyShip3DestroyedHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip4Hitbox[] = "__OTR__ast_sector_y/aSyShip4Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShipWindowsHitbox[] = "__OTR__ast_sector_y/aSyShipWindowsHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShip4DestroyedHitbox[] = "__OTR__ast_sector_y/aSyShip4DestroyedHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSyShipMissileHitbox[] = "__OTR__ast_sector_y/aSyShipMissileHitbox";
|
||||
|
160
include/assets/ast_sector_z.h
Normal file
160
include/assets/ast_sector_z.h
Normal file
@ -0,0 +1,160 @@
|
||||
#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 aSzTitleCardTex[] = "__OTR__ast_sector_z/aSzTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6000840[] = "__OTR__ast_sector_z/D_SZ_6000840";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_60012D0[] = "__OTR__ast_sector_z/D_SZ_60012D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzSpaceJunk1DL[] = "__OTR__ast_sector_z/aSzSpaceJunk1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_15C8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_15C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1748[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1748";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1808[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1808";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1908[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1908";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzSpaceJunk2DL[] = "__OTR__ast_sector_z/aSzSpaceJunk2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1B40[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1B40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1C00[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1C00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6001C80[] = "__OTR__ast_sector_z/D_SZ_6001C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6001D80[] = "__OTR__ast_sector_z/D_SZ_6001D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzSpaceJunk3DL[] = "__OTR__ast_sector_z/aSzSpaceJunk3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_2040[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_2040";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_2230[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_2230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_2330[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_2330";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_23F0[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_23F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_24F0[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_24F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_60025F0[] = "__OTR__ast_sector_z/D_SZ_60025F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_60029F0[] = "__OTR__ast_sector_z/D_SZ_60029F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6002BD0[] = "__OTR__ast_sector_z/D_SZ_6002BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6002C10[] = "__OTR__ast_sector_z/D_SZ_6002C10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6002C30[] = "__OTR__ast_sector_z/D_SZ_6002C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6002D30[] = "__OTR__ast_sector_z/D_SZ_6002D30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6002DE0[] = "__OTR__ast_sector_z/D_SZ_6002DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6002EE0[] = "__OTR__ast_sector_z/D_SZ_6002EE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzBackgroundDL[] = "__OTR__ast_sector_z/aSzBackgroundDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_2FD0[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_2FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzBackgroundTex[] = "__OTR__ast_sector_z/aSzBackgroundTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6004010[] = "__OTR__ast_sector_z/D_SZ_6004010";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_40D8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_40D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_41C8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_41C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_60041F8[] = "__OTR__ast_sector_z/D_SZ_60041F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_60042F8[] = "__OTR__ast_sector_z/D_SZ_60042F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzMissileMark[] = "__OTR__ast_sector_z/aSzMissileMark";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_43D8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_43D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6004458[] = "__OTR__ast_sector_z/D_SZ_6004458";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6004558[] = "__OTR__ast_sector_z/D_SZ_6004558";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzMissileRadarMarkDL[] = "__OTR__ast_sector_z/aSzMissileRadarMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_4590[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_4590";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzSpaceJunk4DL[] = "__OTR__ast_sector_z/aSzSpaceJunk4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_4660[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_4660";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_60047E0[] = "__OTR__ast_sector_z/D_SZ_60047E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzInvaderIIIDL[] = "__OTR__ast_sector_z/aSzInvaderIIIDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_5140[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_5140";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_5320[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_5320";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzInvaderIIITex2[] = "__OTR__ast_sector_z/aSzInvaderIIITex2";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzInvaderIIITex2TLUT[] = "__OTR__ast_sector_z/aSzInvaderIIITex2TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzInvaderIIITex1[] = "__OTR__ast_sector_z/aSzInvaderIIITex1";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzInvaderIIITex1TLUT[] = "__OTR__ast_sector_z/aSzInvaderIIITex1TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6005BF0[] = "__OTR__ast_sector_z/D_SZ_6005BF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_5D70[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_5D70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_5F10[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_5F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006090[] = "__OTR__ast_sector_z/D_SZ_6006090";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006490[] = "__OTR__ast_sector_z/D_SZ_6006490";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006660[] = "__OTR__ast_sector_z/D_SZ_6006660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_6700[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_6700";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006780[] = "__OTR__ast_sector_z/D_SZ_6006780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_68C8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_68C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_6968[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_6968";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006A30[] = "__OTR__ast_sector_z/D_SZ_6006A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_6AD8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_6AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006BD8[] = "__OTR__ast_sector_z/D_SZ_6006BD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006CD8[] = "__OTR__ast_sector_z/D_SZ_6006CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzMissileAnim[] = "__OTR__ast_sector_z/aSzMissileAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzMissileSkel[] = "__OTR__ast_sector_z/aSzMissileSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006E70[] = "__OTR__ast_sector_z/D_SZ_6006E70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6006EB4[] = "__OTR__ast_sector_z/D_SZ_6006EB4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6007558[] = "__OTR__ast_sector_z/D_SZ_6007558";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SZ_6008E08[] = "__OTR__ast_sector_z/D_SZ_6008E08";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSZMissileHitbox[] = "__OTR__ast_sector_z/aSZMissileHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzSpaceJunk3Hitbox[] = "__OTR__ast_sector_z/aSzSpaceJunk3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzSpaceJunk1Hitbox[] = "__OTR__ast_sector_z/aSzSpaceJunk1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSzGreatFoxHitbox[] = "__OTR__ast_sector_z/aSzGreatFoxHitbox";
|
||||
|
286
include/assets/ast_solar.h
Normal file
286
include/assets/ast_solar.h
Normal file
@ -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 aSoTitleCardTex[] = "__OTR__ast_solar/aSoTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60005B0[] = "__OTR__ast_solar/D_SO_60005B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6001C50[] = "__OTR__ast_solar/D_SO_6001C50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6002E60[] = "__OTR__ast_solar/D_SO_6002E60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6004500[] = "__OTR__ast_solar/D_SO_6004500";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6005710[] = "__OTR__ast_solar/D_SO_6005710";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSoGoreAnim[] = "__OTR__ast_solar/aSoGoreAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSoGoreSkel[] = "__OTR__ast_solar/aSoGoreSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_65A0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_65A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6600[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6600";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_66C0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_66C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6720[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6720";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_67E0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_67E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6840[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_6900[] = "__OTR__ast_solar/ast_solar_seg6_gfx_6900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_69B8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_69B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6B98[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6B98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6D78[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6D78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6006DD8[] = "__OTR__ast_solar/D_SO_6006DD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_75E0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_75E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7670[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7670";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7870[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7870";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_78A0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_78A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_78F8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_78F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_7930[] = "__OTR__ast_solar/ast_solar_seg6_gfx_7930";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7988[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7988";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_79D0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_79D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7A28[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_7A70[] = "__OTR__ast_solar/ast_solar_seg6_gfx_7A70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7AC8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7AC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_7B00[] = "__OTR__ast_solar/ast_solar_seg6_gfx_7B00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7B58[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_7BA0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_7BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7BF8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7BF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6007C40[] = "__OTR__ast_solar/D_SO_6007C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7C90[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7C90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6007CC0[] = "__OTR__ast_solar/D_SO_6007CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60084C0[] = "__OTR__ast_solar/D_SO_60084C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_8510[] = "__OTR__ast_solar/ast_solar_seg6_vtx_8510";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6008540[] = "__OTR__ast_solar/D_SO_6008540";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6008D40[] = "__OTR__ast_solar/D_SO_6008D40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_8D90[] = "__OTR__ast_solar/ast_solar_seg6_vtx_8D90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6008DC0[] = "__OTR__ast_solar/D_SO_6008DC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6009D30[] = "__OTR__ast_solar/D_SO_6009D30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_600B1B4[] = "__OTR__ast_solar/D_SO_600B1B4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_600C15C[] = "__OTR__ast_solar/D_SO_600C15C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_600D3DC[] = "__OTR__ast_solar/D_SO_600D3DC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_600E2C4[] = "__OTR__ast_solar/D_SO_600E2C4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_600E470[] = "__OTR__ast_solar/D_SO_600E470";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_600F744[] = "__OTR__ast_solar/D_SO_600F744";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_600F750[] = "__OTR__ast_solar/D_SO_600F750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_F9D8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_F9D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_FBC8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_FBC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_FDC8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_FDC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_FFA8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_FFA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_100E8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_100E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6010198[] = "__OTR__ast_solar/D_SO_6010198";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6010998[] = "__OTR__ast_solar/D_SO_6010998";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6011198[] = "__OTR__ast_solar/D_SO_6011198";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6011398[] = "__OTR__ast_solar/D_SO_6011398";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6012C00[] = "__OTR__ast_solar/D_SO_6012C00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601388C[] = "__OTR__ast_solar/D_SO_601388C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60138A0[] = "__OTR__ast_solar/D_SO_60138A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_139C0[] = "__OTR__ast_solar/ast_solar_seg6_vtx_139C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_13B10[] = "__OTR__ast_solar/ast_solar_seg6_vtx_13B10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6013C70[] = "__OTR__ast_solar/D_SO_6013C70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6014470[] = "__OTR__ast_solar/D_SO_6014470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_14528[] = "__OTR__ast_solar/ast_solar_seg6_vtx_14528";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60146D0[] = "__OTR__ast_solar/D_SO_60146D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_14790[] = "__OTR__ast_solar/ast_solar_seg6_vtx_14790";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6014930[] = "__OTR__ast_solar/D_SO_6014930";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_149F0[] = "__OTR__ast_solar/ast_solar_seg6_vtx_149F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6014B80[] = "__OTR__ast_solar/D_SO_6014B80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_14C40[] = "__OTR__ast_solar/ast_solar_seg6_vtx_14C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6014DB0[] = "__OTR__ast_solar/D_SO_6014DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_14EC8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_14EC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15038[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15038";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60151A0[] = "__OTR__ast_solar/D_SO_60151A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15378[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15378";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15578[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15578";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_155E8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_155E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_157B8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_157B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6015810[] = "__OTR__ast_solar/D_SO_6015810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15C88[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15C88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15E88[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15E88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16078[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16078";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16278[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16278";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16478[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16478";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_164A8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_164A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16698[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16698";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_167C8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_167C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16868[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16868";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16A58[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16A58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16C58[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16C58";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSoRock3DL[] = "__OTR__ast_solar/aSoRock3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16DF8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6016F08[] = "__OTR__ast_solar/D_SO_6016F08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6017008[] = "__OTR__ast_solar/D_SO_6017008";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSoRock2DL[] = "__OTR__ast_solar/aSoRock2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_17160[] = "__OTR__ast_solar/ast_solar_seg6_vtx_17160";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6017200[] = "__OTR__ast_solar/D_SO_6017200";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6017300[] = "__OTR__ast_solar/D_SO_6017300";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSoRock1DL[] = "__OTR__ast_solar/aSoRock1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_17440[] = "__OTR__ast_solar/ast_solar_seg6_vtx_17440";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60174E0[] = "__OTR__ast_solar/D_SO_60174E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6017520[] = "__OTR__ast_solar/D_SO_6017520";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6017550[] = "__OTR__ast_solar/D_SO_6017550";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_175A8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_175A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60175D8[] = "__OTR__ast_solar/D_SO_60175D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60185E0[] = "__OTR__ast_solar/D_SO_60185E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_18638[] = "__OTR__ast_solar/ast_solar_seg6_vtx_18638";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6018668[] = "__OTR__ast_solar/D_SO_6018668";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6019670[] = "__OTR__ast_solar/D_SO_6019670";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_196C8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_196C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60196F8[] = "__OTR__ast_solar/D_SO_60196F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601A700[] = "__OTR__ast_solar/D_SO_601A700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1A758[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1A758";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601A788[] = "__OTR__ast_solar/D_SO_601A788";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601B790[] = "__OTR__ast_solar/D_SO_601B790";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1B7E8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1B7E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601B818[] = "__OTR__ast_solar/D_SO_601B818";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601C820[] = "__OTR__ast_solar/D_SO_601C820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1C878[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1C878";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601C8A8[] = "__OTR__ast_solar/D_SO_601C8A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601D8B0[] = "__OTR__ast_solar/D_SO_601D8B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1D908[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1D908";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601D948[] = "__OTR__ast_solar/D_SO_601D948";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601E150[] = "__OTR__ast_solar/D_SO_601E150";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1E1A8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1E1A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601E1E8[] = "__OTR__ast_solar/D_SO_601E1E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601F1F0[] = "__OTR__ast_solar/D_SO_601F1F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_601F234[] = "__OTR__ast_solar/D_SO_601F234";
|
||||
|
||||
static const char D_SO_6020DD0[] = "__OTR__ast_solar/D_SO_6020DD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6020F60[] = "__OTR__ast_solar/D_SO_6020F60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6021F60[] = "__OTR__ast_solar/D_SO_6021F60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_6022760[] = "__OTR__ast_solar/D_SO_6022760";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60229A4[] = "__OTR__ast_solar/D_SO_60229A4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_SO_60231A4[] = "__OTR__ast_solar/D_SO_60231A4";
|
||||
|
115
include/assets/ast_star_wolf.h
Normal file
115
include/assets/ast_star_wolf.h
Normal file
@ -0,0 +1,115 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F000000[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F000F20[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F000F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F001E40[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F001E40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F002D60[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F002D60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F003C80[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F003C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F004BA0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F004BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F005AC0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F005AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F0069E0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F0069E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F007900[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F007900";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F008820[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F008820";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F009740[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F009740";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F00A660[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00A660";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F00B580[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00B580";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F00C4A0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00C4A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F00D3C0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00D3C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F00E2E0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00E2E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStarWolfStandardShipDL[] = "__OTR__ast_star_wolf/aStarWolfStandardShipDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_F590[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_F590";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_F780[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_F780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_F810[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_F810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_F9F0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_F9F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FB30[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FB30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FC60[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FC60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FCB0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FCB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FE90[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FE90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FF20[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FF20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10110[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10110";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F0101D0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F0101D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStarWolfUpgradedShipDL[] = "__OTR__ast_star_wolf/aStarWolfUpgradedShipDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_107A0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_107A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10980[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10A10[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10A10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10AD0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10C90[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10C90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10DE0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10DE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10FD0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11010[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11010";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11070[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11070";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11110[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11110";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11300[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11500[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11500";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F011680[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F011680";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F011E80[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F011E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F011F00[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F011F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F012700[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F012700";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F012F00[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F012F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F013100[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F013100";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F013180[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F013180";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F013980[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F013980";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStarWolfRadarMarkDL[] = "__OTR__ast_star_wolf/aStarWolfRadarMarkDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_141D8[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_141D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_STAR_WOLF_F014208[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F014208";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStarWolfShadowDL[] = "__OTR__ast_star_wolf/aStarWolfShadowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_14368[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_14368";
|
||||
|
||||
static const ALIGN_ASSET(2) char aStarWolfShadowTex[] = "__OTR__ast_star_wolf/aStarWolfShadowTex";
|
||||
|
213
include/assets/ast_text.h
Normal file
213
include/assets/ast_text.h
Normal file
@ -0,0 +1,213 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_0[] = "__OTR__ast_text/aSmallText_0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_1[] = "__OTR__ast_text/aSmallText_1";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_2[] = "__OTR__ast_text/aSmallText_2";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_3[] = "__OTR__ast_text/aSmallText_3";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_4[] = "__OTR__ast_text/aSmallText_4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_5[] = "__OTR__ast_text/aSmallText_5";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_6[] = "__OTR__ast_text/aSmallText_6";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_7[] = "__OTR__ast_text/aSmallText_7";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_8[] = "__OTR__ast_text/aSmallText_8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_9[] = "__OTR__ast_text/aSmallText_9";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextMissionNo[] = "__OTR__ast_text/aTextMissionNo";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTrTitleCardTex[] = "__OTR__ast_text/aTrTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextEnemiesDown[] = "__OTR__ast_text/aTextEnemiesDown";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextAccumTotal[] = "__OTR__ast_text/aTextAccumTotal";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextStatusOfTeam[] = "__OTR__ast_text/aTextStatusOfTeam";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextEnd[] = "__OTR__ast_text/aTextEnd";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextACCOM[] = "__OTR__ast_text/aTextACCOM";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextPLISHED[] = "__OTR__ast_text/aTextPLISHED";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextMISSION[] = "__OTR__ast_text/aTextMISSION";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextCOMP[] = "__OTR__ast_text/aTextCOMP";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextLETE[] = "__OTR__ast_text/aTextLETE";
|
||||
|
||||
static const ALIGN_ASSET(2) char aText_THE_END[] = "__OTR__ast_text/aText_THE_END";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextFalco[] = "__OTR__ast_text/aTextFalco";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextPeppy[] = "__OTR__ast_text/aTextPeppy";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextSlippy[] = "__OTR__ast_text/aTextSlippy";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_A[] = "__OTR__ast_text/aSmallText_A";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_B[] = "__OTR__ast_text/aSmallText_B";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallTextExclamMark[] = "__OTR__ast_text/aSmallTextExclamMark";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_C[] = "__OTR__ast_text/aSmallText_C";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_D[] = "__OTR__ast_text/aSmallText_D";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_E[] = "__OTR__ast_text/aSmallText_E";
|
||||
|
||||
static const ALIGN_ASSET(2) char sLargeText_1997_1[] = "__OTR__ast_text/sLargeText_1997_1";
|
||||
|
||||
static const ALIGN_ASSET(2) char sLargeText_1997_7[] = "__OTR__ast_text/sLargeText_1997_7";
|
||||
|
||||
static const ALIGN_ASSET(2) char sLargeText_1997_9[] = "__OTR__ast_text/sLargeText_1997_9";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_F[] = "__OTR__ast_text/aSmallText_F";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_G[] = "__OTR__ast_text/aSmallText_G";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_H[] = "__OTR__ast_text/aSmallText_H";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_I[] = "__OTR__ast_text/aSmallText_I";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_J[] = "__OTR__ast_text/aSmallText_J";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_K[] = "__OTR__ast_text/aSmallText_K";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextKanjiCOMPLETE[] = "__OTR__ast_text/aTextKanjiCOMPLETE";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_L[] = "__OTR__ast_text/aSmallText_L";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_M[] = "__OTR__ast_text/aSmallText_M";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_N[] = "__OTR__ast_text/aSmallText_N";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_A[] = "__OTR__ast_text/aLargeText_A";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_B[] = "__OTR__ast_text/aLargeText_B";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_C[] = "__OTR__ast_text/aLargeText_C";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_D[] = "__OTR__ast_text/aLargeText_D";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_E[] = "__OTR__ast_text/aLargeText_E";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_F[] = "__OTR__ast_text/aLargeText_F";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_G[] = "__OTR__ast_text/aLargeText_G";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_H[] = "__OTR__ast_text/aLargeText_H";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_I[] = "__OTR__ast_text/aLargeText_I";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_J[] = "__OTR__ast_text/aLargeText_J";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_K[] = "__OTR__ast_text/aLargeText_K";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_L[] = "__OTR__ast_text/aLargeText_L";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_M[] = "__OTR__ast_text/aLargeText_M";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_N[] = "__OTR__ast_text/aLargeText_N";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_O[] = "__OTR__ast_text/aSmallText_O";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_P[] = "__OTR__ast_text/aLargeText_P";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_Q[] = "__OTR__ast_text/aLargeText_Q";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_R[] = "__OTR__ast_text/aLargeText_R";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_S[] = "__OTR__ast_text/aLargeText_S";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_T[] = "__OTR__ast_text/aLargeText_T";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_U[] = "__OTR__ast_text/aLargeText_U";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_V[] = "__OTR__ast_text/aLargeText_V";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_W[] = "__OTR__ast_text/aLargeText_W";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_X[] = "__OTR__ast_text/aLargeText_X";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_Y[] = "__OTR__ast_text/aLargeText_Y";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_HYPHEN[] = "__OTR__ast_text/aLargeText_HYPHEN";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_Z[] = "__OTR__ast_text/aLargeText_Z";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_s_[] = "__OTR__ast_text/aLargeText_s_";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_t_[] = "__OTR__ast_text/aLargeText_t_";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_o_[] = "__OTR__ast_text/aSmallText_o_";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_p[] = "__OTR__ast_text/aSmallText_p";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_DOT[] = "__OTR__ast_text/aLargeText_DOT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_q[] = "__OTR__ast_text/aSmallText_q";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_r[] = "__OTR__ast_text/aSmallText_r";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_s[] = "__OTR__ast_text/aSmallText_s";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_0[] = "__OTR__ast_text/aLargeText_0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_1[] = "__OTR__ast_text/aLargeText_1";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_2[] = "__OTR__ast_text/aLargeText_2";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_3[] = "__OTR__ast_text/aLargeText_3";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_4[] = "__OTR__ast_text/aLargeText_4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_5[] = "__OTR__ast_text/aLargeText_5";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_6[] = "__OTR__ast_text/aLargeText_6";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_7[] = "__OTR__ast_text/aLargeText_7";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_8[] = "__OTR__ast_text/aLargeText_8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aLargeText_9[] = "__OTR__ast_text/aLargeText_9";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTextKanji_END[] = "__OTR__ast_text/aTextKanji_END";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_T[] = "__OTR__ast_text/aSmallText_T";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_DOT[] = "__OTR__ast_text/aSmallText_DOT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_COLON[] = "__OTR__ast_text/aSmallText_COLON";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_U[] = "__OTR__ast_text/aSmallText_U";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_V[] = "__OTR__ast_text/aSmallText_V";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_W[] = "__OTR__ast_text/aSmallText_W";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_X[] = "__OTR__ast_text/aSmallText_X";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_Y[] = "__OTR__ast_text/aSmallText_Y";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_HYPHEN[] = "__OTR__ast_text/aSmallText_HYPHEN";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSmallText_Z[] = "__OTR__ast_text/aSmallText_Z";
|
||||
|
||||
static const ALIGN_ASSET(2) char aDownWrenchDL[] = "__OTR__ast_text/aDownWrenchDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_text_seg5_vtx_B6A8[] = "__OTR__ast_text/ast_text_seg5_vtx_B6A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aDownWrenchTexture[] = "__OTR__ast_text/aDownWrenchTexture";
|
||||
|
||||
static const ALIGN_ASSET(2) char aDownWrenchTLUT[] = "__OTR__ast_text/aDownWrenchTLUT";
|
||||
|
144
include/assets/ast_titania.h
Normal file
144
include/assets/ast_titania.h
Normal file
@ -0,0 +1,144 @@
|
||||
#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 aTiTitleCardTex[] = "__OTR__ast_titania/aTiTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6000A80[] = "__OTR__ast_titania/D_TI_6000A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_AD0[] = "__OTR__ast_titania/ast_titania_seg6_vtx_AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6000B10[] = "__OTR__ast_titania/D_TI_6000B10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6001B10[] = "__OTR__ast_titania/D_TI_6001B10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_1B68[] = "__OTR__ast_titania/ast_titania_seg6_vtx_1B68";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6001BA8[] = "__OTR__ast_titania/D_TI_6001BA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiCactusDL[] = "__OTR__ast_titania/aTiCactusDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_2408[] = "__OTR__ast_titania/ast_titania_seg6_vtx_2408";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6002438[] = "__OTR__ast_titania/D_TI_6002438";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6003440[] = "__OTR__ast_titania/D_TI_6003440";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_3498[] = "__OTR__ast_titania/ast_titania_seg6_vtx_3498";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_60034E0[] = "__OTR__ast_titania/D_TI_60034E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_3538[] = "__OTR__ast_titania/ast_titania_seg6_vtx_3538";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6003580[] = "__OTR__ast_titania/D_TI_6003580";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_35D8[] = "__OTR__ast_titania/ast_titania_seg6_vtx_35D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6003620[] = "__OTR__ast_titania/D_TI_6003620";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_3678[] = "__OTR__ast_titania/ast_titania_seg6_vtx_3678";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_60036C0[] = "__OTR__ast_titania/D_TI_60036C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_3718[] = "__OTR__ast_titania/ast_titania_seg6_vtx_3718";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6003760[] = "__OTR__ast_titania/D_TI_6003760";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_37B8[] = "__OTR__ast_titania/ast_titania_seg6_vtx_37B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6003800[] = "__OTR__ast_titania/D_TI_6003800";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6003C00[] = "__OTR__ast_titania/D_TI_6003C00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6004000[] = "__OTR__ast_titania/D_TI_6004000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6004400[] = "__OTR__ast_titania/D_TI_6004400";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6004800[] = "__OTR__ast_titania/D_TI_6004800";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6004C00[] = "__OTR__ast_titania/D_TI_6004C00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6005000[] = "__OTR__ast_titania/D_TI_6005000";
|
||||
|
||||
static const char D_TI_600631C[] = "__OTR__ast_titania/D_TI_600631C";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTi1LandmineHitbox[] = "__OTR__ast_titania/aTi1LandmineHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiDesertRoverHitbox[] = "__OTR__ast_titania/aTiDesertRoverHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiSkullHitbox[] = "__OTR__ast_titania/aTiSkullHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib0Hitbox[] = "__OTR__ast_titania/aTiRib0Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib1Hitbox[] = "__OTR__ast_titania/aTiRib1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib2Hitbox[] = "__OTR__ast_titania/aTiRib2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib3Hitbox[] = "__OTR__ast_titania/aTiRib3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib4Hitbox[] = "__OTR__ast_titania/aTiRib4Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib5Hitbox[] = "__OTR__ast_titania/aTiRib5Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib6Hitbox[] = "__OTR__ast_titania/aTiRib6Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib7Hitbox[] = "__OTR__ast_titania/aTiRib7Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRib8Hitbox[] = "__OTR__ast_titania/aTiRib8Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiDelphorHitbox[] = "__OTR__ast_titania/aTiDelphorHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiDelphorHeadHitbox[] = "__OTR__ast_titania/aTiDelphorHeadHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiBoulderHitbox[] = "__OTR__ast_titania/aTiBoulderHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiBombHitbox[] = "__OTR__ast_titania/aTiBombHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006874[] = "__OTR__ast_titania/D_TI_6006874";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiRascoHitbox[] = "__OTR__ast_titania/aTiRascoHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiCactusHitbox[] = "__OTR__ast_titania/aTiCactusHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiFekudaHitbox[] = "__OTR__ast_titania/aTiFekudaHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006924[] = "__OTR__ast_titania/D_TI_6006924";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006940[] = "__OTR__ast_titania/D_TI_6006940";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_600695C[] = "__OTR__ast_titania/D_TI_600695C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006978[] = "__OTR__ast_titania/D_TI_6006978";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006994[] = "__OTR__ast_titania/D_TI_6006994";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_60069B0[] = "__OTR__ast_titania/D_TI_60069B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_60069CC[] = "__OTR__ast_titania/D_TI_60069CC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_60069E8[] = "__OTR__ast_titania/D_TI_60069E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006A04[] = "__OTR__ast_titania/D_TI_6006A04";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006A20[] = "__OTR__ast_titania/D_TI_6006A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiDesertCrawlerHitbox[] = "__OTR__ast_titania/aTiDesertCrawlerHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiPillarHitbox[] = "__OTR__ast_titania/aTiPillarHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006C0C[] = "__OTR__ast_titania/D_TI_6006C0C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006C28[] = "__OTR__ast_titania/D_TI_6006C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTiBridgeHitbox[] = "__OTR__ast_titania/aTiBridgeHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6006C60[] = "__OTR__ast_titania/D_TI_6006C60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TI_6009BB8[] = "__OTR__ast_titania/D_TI_6009BB8";
|
||||
|
761
include/assets/ast_title.h
Normal file
761
include/assets/ast_title.h
Normal file
@ -0,0 +1,761 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleStarfoxLogoTex[] = "__OTR__ast_title/aTitleStarfoxLogoTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleN64LogoTex[] = "__OTR__ast_title/aTitleN64LogoTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gTitleRadioStatic[] = "__OTR__ast_title/gTitleRadioStatic";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleSunGlareTex[] = "__OTR__ast_title/aTitleSunGlareTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char a1997NintendoTex[] = "__OTR__ast_title/a1997NintendoTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitlePressStartTex[] = "__OTR__ast_title/aTitlePressStartTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleGreatFoxCardTex[] = "__OTR__ast_title/aTitleGreatFoxCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gTitleSlippyCard[] = "__OTR__ast_title/gTitleSlippyCard";
|
||||
|
||||
static const ALIGN_ASSET(2) char gTitlePeppyCard[] = "__OTR__ast_title/gTitlePeppyCard";
|
||||
|
||||
static const ALIGN_ASSET(2) char gTitleFalcoCard[] = "__OTR__ast_title/gTitleFalcoCard";
|
||||
|
||||
static const ALIGN_ASSET(2) char gTitleFoxCard[] = "__OTR__ast_title/gTitleFoxCard";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleArwingCardTex[] = "__OTR__ast_title/aTitleArwingCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleNoControllerTex[] = "__OTR__ast_title/aTitleNoControllerTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleCopyrightTex[] = "__OTR__ast_title/aTitleCopyrightTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char gTitleUnusedNintendoCopyright[] = "__OTR__ast_title/gTitleUnusedNintendoCopyright";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIntroStarfoxLogoTex[] = "__OTR__ast_title/aIntroStarfoxLogoTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIntroStarfoxLogoTLUT[] = "__OTR__ast_title/aIntroStarfoxLogoTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIntroInTex[] = "__OTR__ast_title/aIntroInTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aIntroInTLUT[] = "__OTR__ast_title/aIntroInTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64LogoDL[] = "__OTR__ast_title/a64LogoDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14C28[] = "__OTR__ast_title/ast_title_seg6_vtx_14C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14C68[] = "__OTR__ast_title/ast_title_seg6_vtx_14C68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14CA8[] = "__OTR__ast_title/ast_title_seg6_vtx_14CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14CE8[] = "__OTR__ast_title/ast_title_seg6_vtx_14CE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14D28[] = "__OTR__ast_title/ast_title_seg6_vtx_14D28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14D68[] = "__OTR__ast_title/ast_title_seg6_vtx_14D68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14DA8[] = "__OTR__ast_title/ast_title_seg6_vtx_14DA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo1Tex[] = "__OTR__ast_title/a64Logo1Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo1TLUT[] = "__OTR__ast_title/a64Logo1TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo2Tex[] = "__OTR__ast_title/a64Logo2Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo2TLUT[] = "__OTR__ast_title/a64Logo2TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo3Tex[] = "__OTR__ast_title/a64Logo3Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo3TLUT[] = "__OTR__ast_title/a64Logo3TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo4Tex[] = "__OTR__ast_title/a64Logo4Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo4TLUT[] = "__OTR__ast_title/a64Logo4TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo5Tex[] = "__OTR__ast_title/a64Logo5Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo5TLUT[] = "__OTR__ast_title/a64Logo5TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo6Tex[] = "__OTR__ast_title/a64Logo6Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo6TLUT[] = "__OTR__ast_title/a64Logo6TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo7Tex[] = "__OTR__ast_title/a64Logo7Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char a64Logo7TLUT[] = "__OTR__ast_title/a64Logo7TLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleGreatFoxDeckDL[] = "__OTR__ast_title/aTitleGreatFoxDeckDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19040[] = "__OTR__ast_title/ast_title_seg6_vtx_19040";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19080[] = "__OTR__ast_title/ast_title_seg6_vtx_19080";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_190C0[] = "__OTR__ast_title/ast_title_seg6_vtx_190C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19100[] = "__OTR__ast_title/ast_title_seg6_vtx_19100";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19140[] = "__OTR__ast_title/ast_title_seg6_vtx_19140";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19340[] = "__OTR__ast_title/ast_title_seg6_vtx_19340";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19440[] = "__OTR__ast_title/ast_title_seg6_vtx_19440";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19480[] = "__OTR__ast_title/ast_title_seg6_vtx_19480";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_194C0[] = "__OTR__ast_title/ast_title_seg6_vtx_194C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19500[] = "__OTR__ast_title/ast_title_seg6_vtx_19500";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60195C0[] = "__OTR__ast_title/D_TITLE_60195C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6019DC0[] = "__OTR__ast_title/D_TITLE_6019DC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601A5C0[] = "__OTR__ast_title/D_TITLE_601A5C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601B5C0[] = "__OTR__ast_title/D_TITLE_601B5C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601B7C0[] = "__OTR__ast_title/D_TITLE_601B7C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleCsPassageWayWallTex[] = "__OTR__ast_title/aTitleCsPassageWayWallTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleGreatFoxDeckLauncherDL[] = "__OTR__ast_title/aTitleGreatFoxDeckLauncherDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1C950[] = "__OTR__ast_title/ast_title_seg6_vtx_1C950";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1C990[] = "__OTR__ast_title/ast_title_seg6_vtx_1C990";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1CB10[] = "__OTR__ast_title/ast_title_seg6_vtx_1CB10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1CC90[] = "__OTR__ast_title/ast_title_seg6_vtx_1CC90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601CCD0[] = "__OTR__ast_title/D_TITLE_601CCD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601CED0[] = "__OTR__ast_title/D_TITLE_601CED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601CF50[] = "__OTR__ast_title/D_TITLE_601CF50";
|
||||
|
||||
static const ALIGN_ASSET(2) char aNoControllerBgTex[] = "__OTR__ast_title/aNoControllerBgTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aNoControllerBgTLUT[] = "__OTR__ast_title/aNoControllerBgTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601E424[] = "__OTR__ast_title/D_TITLE_601E424";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601E430[] = "__OTR__ast_title/D_TITLE_601E430";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E530[] = "__OTR__ast_title/ast_title_seg6_vtx_1E530";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E5B0[] = "__OTR__ast_title/ast_title_seg6_vtx_1E5B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E650[] = "__OTR__ast_title/ast_title_seg6_vtx_1E650";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601E720[] = "__OTR__ast_title/D_TITLE_601E720";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E820[] = "__OTR__ast_title/ast_title_seg6_vtx_1E820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E900[] = "__OTR__ast_title/ast_title_seg6_vtx_1E900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E9C0[] = "__OTR__ast_title/ast_title_seg6_vtx_1E9C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601EA00[] = "__OTR__ast_title/D_TITLE_601EA00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601F200[] = "__OTR__ast_title/D_TITLE_601F200";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601F400[] = "__OTR__ast_title/D_TITLE_601F400";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_601F8E0[] = "__OTR__ast_title/D_TITLE_601F8E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6020058[] = "__OTR__ast_title/D_TITLE_6020058";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_20070[] = "__OTR__ast_title/ast_title_seg6_gfx_20070";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20528[] = "__OTR__ast_title/ast_title_seg6_vtx_20528";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20588[] = "__OTR__ast_title/ast_title_seg6_vtx_20588";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20728[] = "__OTR__ast_title/ast_title_seg6_vtx_20728";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20928[] = "__OTR__ast_title/ast_title_seg6_vtx_20928";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20AC8[] = "__OTR__ast_title/ast_title_seg6_vtx_20AC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20C38[] = "__OTR__ast_title/ast_title_seg6_vtx_20C38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20E38[] = "__OTR__ast_title/ast_title_seg6_vtx_20E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21018[] = "__OTR__ast_title/ast_title_seg6_vtx_21018";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_210B8[] = "__OTR__ast_title/ast_title_seg6_vtx_210B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_212A8[] = "__OTR__ast_title/ast_title_seg6_vtx_212A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21498[] = "__OTR__ast_title/ast_title_seg6_vtx_21498";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60214F8[] = "__OTR__ast_title/D_TITLE_60214F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_21700[] = "__OTR__ast_title/ast_title_seg6_gfx_21700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21940[] = "__OTR__ast_title/ast_title_seg6_vtx_21940";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21A00[] = "__OTR__ast_title/ast_title_seg6_vtx_21A00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21A60[] = "__OTR__ast_title/ast_title_seg6_vtx_21A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21C50[] = "__OTR__ast_title/ast_title_seg6_vtx_21C50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21CC0[] = "__OTR__ast_title/ast_title_seg6_vtx_21CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6021D10[] = "__OTR__ast_title/D_TITLE_6021D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6021F10[] = "__OTR__ast_title/D_TITLE_6021F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_22110[] = "__OTR__ast_title/ast_title_seg6_gfx_22110";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22178[] = "__OTR__ast_title/ast_title_seg6_vtx_22178";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_222A0[] = "__OTR__ast_title/ast_title_seg6_gfx_222A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22308[] = "__OTR__ast_title/ast_title_seg6_vtx_22308";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_22440[] = "__OTR__ast_title/ast_title_seg6_gfx_22440";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22600[] = "__OTR__ast_title/ast_title_seg6_vtx_22600";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22800[] = "__OTR__ast_title/ast_title_seg6_vtx_22800";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_229F0[] = "__OTR__ast_title/ast_title_seg6_vtx_229F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22A70[] = "__OTR__ast_title/ast_title_seg6_vtx_22A70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22AF0[] = "__OTR__ast_title/ast_title_seg6_vtx_22AF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6022B40[] = "__OTR__ast_title/D_TITLE_6022B40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6023340[] = "__OTR__ast_title/D_TITLE_6023340";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6023B40[] = "__OTR__ast_title/D_TITLE_6023B40";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6024340[] = "__OTR__ast_title/D_TITLE_6024340";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60246F8[] = "__OTR__ast_title/D_TITLE_60246F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_24710[] = "__OTR__ast_title/ast_title_seg6_gfx_24710";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24B58[] = "__OTR__ast_title/ast_title_seg6_vtx_24B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24C18[] = "__OTR__ast_title/ast_title_seg6_vtx_24C18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24D38[] = "__OTR__ast_title/ast_title_seg6_vtx_24D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24F38[] = "__OTR__ast_title/ast_title_seg6_vtx_24F38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25078[] = "__OTR__ast_title/ast_title_seg6_vtx_25078";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25268[] = "__OTR__ast_title/ast_title_seg6_vtx_25268";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25458[] = "__OTR__ast_title/ast_title_seg6_vtx_25458";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_254F8[] = "__OTR__ast_title/ast_title_seg6_vtx_254F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_255D8[] = "__OTR__ast_title/ast_title_seg6_vtx_255D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25658[] = "__OTR__ast_title/ast_title_seg6_vtx_25658";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60257A8[] = "__OTR__ast_title/D_TITLE_60257A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60259A8[] = "__OTR__ast_title/D_TITLE_60259A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6025BA8[] = "__OTR__ast_title/D_TITLE_6025BA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6025DA8[] = "__OTR__ast_title/D_TITLE_6025DA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6025FA8[] = "__OTR__ast_title/D_TITLE_6025FA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_267B0[] = "__OTR__ast_title/ast_title_seg6_gfx_267B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26968[] = "__OTR__ast_title/ast_title_seg6_vtx_26968";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26B68[] = "__OTR__ast_title/ast_title_seg6_vtx_26B68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26C58[] = "__OTR__ast_title/ast_title_seg6_vtx_26C58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26CC8[] = "__OTR__ast_title/ast_title_seg6_vtx_26CC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26CF8[] = "__OTR__ast_title/ast_title_seg6_vtx_26CF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6026D28[] = "__OTR__ast_title/D_TITLE_6026D28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6026F28[] = "__OTR__ast_title/D_TITLE_6026F28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_27130[] = "__OTR__ast_title/ast_title_seg6_gfx_27130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_275E8[] = "__OTR__ast_title/ast_title_seg6_vtx_275E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_277D8[] = "__OTR__ast_title/ast_title_seg6_vtx_277D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_279D8[] = "__OTR__ast_title/ast_title_seg6_vtx_279D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27BD8[] = "__OTR__ast_title/ast_title_seg6_vtx_27BD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27C98[] = "__OTR__ast_title/ast_title_seg6_vtx_27C98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27CF8[] = "__OTR__ast_title/ast_title_seg6_vtx_27CF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27E88[] = "__OTR__ast_title/ast_title_seg6_vtx_27E88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27FD8[] = "__OTR__ast_title/ast_title_seg6_vtx_27FD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28018[] = "__OTR__ast_title/ast_title_seg6_vtx_28018";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28218[] = "__OTR__ast_title/ast_title_seg6_vtx_28218";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28418[] = "__OTR__ast_title/ast_title_seg6_vtx_28418";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_284A8[] = "__OTR__ast_title/ast_title_seg6_vtx_284A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6028508[] = "__OTR__ast_title/D_TITLE_6028508";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6028708[] = "__OTR__ast_title/D_TITLE_6028708";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6028788[] = "__OTR__ast_title/D_TITLE_6028788";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6028988[] = "__OTR__ast_title/D_TITLE_6028988";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6028A08[] = "__OTR__ast_title/D_TITLE_6028A08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6028C08[] = "__OTR__ast_title/D_TITLE_6028C08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6029BE4[] = "__OTR__ast_title/D_TITLE_6029BE4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_602A710[] = "__OTR__ast_title/D_TITLE_602A710";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleGreatFoxDeckPlatformDL[] = "__OTR__ast_title/aTitleGreatFoxDeckPlatformDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A800[] = "__OTR__ast_title/ast_title_seg6_vtx_2A800";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A840[] = "__OTR__ast_title/ast_title_seg6_vtx_2A840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A880[] = "__OTR__ast_title/ast_title_seg6_vtx_2A880";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleCsPassageWayCeilingTex[] = "__OTR__ast_title/aTitleCsPassageWayCeilingTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2B0C0[] = "__OTR__ast_title/ast_title_seg6_gfx_2B0C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B1E0[] = "__OTR__ast_title/ast_title_seg6_vtx_2B1E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B260[] = "__OTR__ast_title/ast_title_seg6_vtx_2B260";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2B420[] = "__OTR__ast_title/ast_title_seg6_gfx_2B420";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B5D8[] = "__OTR__ast_title/ast_title_seg6_vtx_2B5D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B748[] = "__OTR__ast_title/ast_title_seg6_vtx_2B748";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B798[] = "__OTR__ast_title/ast_title_seg6_vtx_2B798";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B818[] = "__OTR__ast_title/ast_title_seg6_vtx_2B818";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_602B8C0[] = "__OTR__ast_title/D_TITLE_602B8C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B9C0[] = "__OTR__ast_title/ast_title_seg6_vtx_2B9C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BA40[] = "__OTR__ast_title/ast_title_seg6_vtx_2BA40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BB60[] = "__OTR__ast_title/ast_title_seg6_vtx_2BB60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BBA0[] = "__OTR__ast_title/ast_title_seg6_gfx_2BBA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BC60[] = "__OTR__ast_title/ast_title_seg6_vtx_2BC60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BD60[] = "__OTR__ast_title/ast_title_seg6_gfx_2BD60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BE20[] = "__OTR__ast_title/ast_title_seg6_vtx_2BE20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BE80[] = "__OTR__ast_title/ast_title_seg6_vtx_2BE80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BF20[] = "__OTR__ast_title/ast_title_seg6_gfx_2BF20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C008[] = "__OTR__ast_title/ast_title_seg6_vtx_2C008";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C068[] = "__OTR__ast_title/ast_title_seg6_vtx_2C068";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C170[] = "__OTR__ast_title/ast_title_seg6_gfx_2C170";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C250[] = "__OTR__ast_title/ast_title_seg6_vtx_2C250";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C350[] = "__OTR__ast_title/ast_title_seg6_vtx_2C350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C390[] = "__OTR__ast_title/ast_title_seg6_gfx_2C390";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C420[] = "__OTR__ast_title/ast_title_seg6_vtx_2C420";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C4B0[] = "__OTR__ast_title/ast_title_seg6_gfx_2C4B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C9B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2C9B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CA10[] = "__OTR__ast_title/ast_title_seg6_vtx_2CA10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CB30[] = "__OTR__ast_title/ast_title_seg6_vtx_2CB30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CCD0[] = "__OTR__ast_title/ast_title_seg6_vtx_2CCD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CEB0[] = "__OTR__ast_title/ast_title_seg6_vtx_2CEB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D0B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2D0B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D1B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2D1B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D210[] = "__OTR__ast_title/ast_title_seg6_vtx_2D210";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D400[] = "__OTR__ast_title/ast_title_seg6_vtx_2D400";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D600[] = "__OTR__ast_title/ast_title_seg6_vtx_2D600";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D800[] = "__OTR__ast_title/ast_title_seg6_vtx_2D800";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_602D930[] = "__OTR__ast_title/D_TITLE_602D930";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_602DB30[] = "__OTR__ast_title/D_TITLE_602DB30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_602DD30[] = "__OTR__ast_title/D_TITLE_602DD30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_602DF30[] = "__OTR__ast_title/D_TITLE_602DF30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2E130[] = "__OTR__ast_title/ast_title_seg6_gfx_2E130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E238[] = "__OTR__ast_title/ast_title_seg6_vtx_2E238";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E2B8[] = "__OTR__ast_title/ast_title_seg6_vtx_2E2B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleCsPassageWayDL[] = "__OTR__ast_title/aTitleCsPassageWayDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E450[] = "__OTR__ast_title/ast_title_seg6_vtx_2E450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E490[] = "__OTR__ast_title/ast_title_seg6_vtx_2E490";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E4D0[] = "__OTR__ast_title/ast_title_seg6_vtx_2E4D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleCsPassageWayFloorTex[] = "__OTR__ast_title/aTitleCsPassageWayFloorTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoxRunningAnim[] = "__OTR__ast_title/aFoxRunningAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoxSkel[] = "__OTR__ast_title/aFoxSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFalcoRunningAnim[] = "__OTR__ast_title/aFalcoRunningAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFalcoSkel[] = "__OTR__ast_title/aFalcoSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSlippyRunningAnim[] = "__OTR__ast_title/aSlippyRunningAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSlippySkel[] = "__OTR__ast_title/aSlippySkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aPeppyRunningAnim[] = "__OTR__ast_title/aPeppyRunningAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aPeppySkel[] = "__OTR__ast_title/aPeppySkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleArwingEngineGlowDL[] = "__OTR__ast_title/aTitleArwingEngineGlowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_32138[] = "__OTR__ast_title/ast_title_seg6_vtx_32138";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleArwingEngineGlowTex[] = "__OTR__ast_title/aTitleArwingEngineGlowTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleArwingShadowDL[] = "__OTR__ast_title/aTitleArwingShadowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_325D8[] = "__OTR__ast_title/ast_title_seg6_vtx_325D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTitleArwingShadowTex[] = "__OTR__ast_title/aTitleArwingShadowTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFalcoAnim[] = "__OTR__ast_title/aFalcoAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aFoxAnim[] = "__OTR__ast_title/aFoxAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aPeppyAnim[] = "__OTR__ast_title/aPeppyAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aSlippyAnim[] = "__OTR__ast_title/aSlippyAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6036290[] = "__OTR__ast_title/D_TITLE_6036290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_362E8[] = "__OTR__ast_title/ast_title_seg6_vtx_362E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6036328[] = "__OTR__ast_title/D_TITLE_6036328";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6036B30[] = "__OTR__ast_title/D_TITLE_6036B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_36B88[] = "__OTR__ast_title/ast_title_seg6_vtx_36B88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6036BC8[] = "__OTR__ast_title/D_TITLE_6036BC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_373D0[] = "__OTR__ast_title/ast_title_seg6_gfx_373D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37458[] = "__OTR__ast_title/ast_title_seg6_vtx_37458";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_374F0[] = "__OTR__ast_title/ast_title_seg6_gfx_374F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37548[] = "__OTR__ast_title/ast_title_seg6_vtx_37548";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_375B0[] = "__OTR__ast_title/ast_title_seg6_gfx_375B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37670[] = "__OTR__ast_title/ast_title_seg6_vtx_37670";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37770[] = "__OTR__ast_title/ast_title_seg6_gfx_37770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_377E0[] = "__OTR__ast_title/ast_title_seg6_vtx_377E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37840[] = "__OTR__ast_title/ast_title_seg6_gfx_37840";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_378D0[] = "__OTR__ast_title/ast_title_seg6_vtx_378D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37970[] = "__OTR__ast_title/ast_title_seg6_gfx_37970";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37A00[] = "__OTR__ast_title/ast_title_seg6_vtx_37A00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37AA0[] = "__OTR__ast_title/ast_title_seg6_gfx_37AA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37BA8[] = "__OTR__ast_title/ast_title_seg6_vtx_37BA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37C28[] = "__OTR__ast_title/ast_title_seg6_vtx_37C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char aPlanetCorneriaDL[] = "__OTR__ast_title/aPlanetCorneriaDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37ED0[] = "__OTR__ast_title/ast_title_seg6_vtx_37ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F10[] = "__OTR__ast_title/ast_title_seg6_vtx_37F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F50[] = "__OTR__ast_title/ast_title_seg6_vtx_37F50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F90[] = "__OTR__ast_title/ast_title_seg6_vtx_37F90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37FD0[] = "__OTR__ast_title/ast_title_seg6_vtx_37FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38010[] = "__OTR__ast_title/ast_title_seg6_vtx_38010";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38050[] = "__OTR__ast_title/ast_title_seg6_vtx_38050";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38090[] = "__OTR__ast_title/ast_title_seg6_vtx_38090";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60380D0[] = "__OTR__ast_title/D_TITLE_60380D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60390D0[] = "__OTR__ast_title/D_TITLE_60390D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_603A0D0[] = "__OTR__ast_title/D_TITLE_603A0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_603B0D0[] = "__OTR__ast_title/D_TITLE_603B0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_603C0D0[] = "__OTR__ast_title/D_TITLE_603C0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_603D0D0[] = "__OTR__ast_title/D_TITLE_603D0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_603E0D0[] = "__OTR__ast_title/D_TITLE_603E0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_603F0D0[] = "__OTR__ast_title/D_TITLE_603F0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_400D0[] = "__OTR__ast_title/ast_title_seg6_gfx_400D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40158[] = "__OTR__ast_title/ast_title_seg6_vtx_40158";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_401E0[] = "__OTR__ast_title/ast_title_seg6_gfx_401E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40250[] = "__OTR__ast_title/ast_title_seg6_vtx_40250";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_402B0[] = "__OTR__ast_title/ast_title_seg6_gfx_402B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40380[] = "__OTR__ast_title/ast_title_seg6_vtx_40380";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_404D0[] = "__OTR__ast_title/ast_title_seg6_gfx_404D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_405A8[] = "__OTR__ast_title/ast_title_seg6_vtx_405A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_406F0[] = "__OTR__ast_title/ast_title_seg6_gfx_406F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40760[] = "__OTR__ast_title/ast_title_seg6_vtx_40760";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_407C0[] = "__OTR__ast_title/ast_title_seg6_gfx_407C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40840[] = "__OTR__ast_title/ast_title_seg6_vtx_40840";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60408C0[] = "__OTR__ast_title/D_TITLE_60408C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_409C0[] = "__OTR__ast_title/ast_title_seg6_vtx_409C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40A40[] = "__OTR__ast_title/ast_title_seg6_vtx_40A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40AC0[] = "__OTR__ast_title/ast_title_seg6_vtx_40AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40B90[] = "__OTR__ast_title/ast_title_seg6_gfx_40B90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40C10[] = "__OTR__ast_title/ast_title_seg6_vtx_40C10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40CA0[] = "__OTR__ast_title/ast_title_seg6_gfx_40CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40D40[] = "__OTR__ast_title/ast_title_seg6_vtx_40D40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40E00[] = "__OTR__ast_title/ast_title_seg6_gfx_40E00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40EA0[] = "__OTR__ast_title/ast_title_seg6_vtx_40EA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40F60[] = "__OTR__ast_title/ast_title_seg6_gfx_40F60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40FE0[] = "__OTR__ast_title/ast_title_seg6_vtx_40FE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTeamShadowDL[] = "__OTR__ast_title/aTeamShadowDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_410C8[] = "__OTR__ast_title/ast_title_seg6_vtx_410C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60410F8[] = "__OTR__ast_title/D_TITLE_60410F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41900[] = "__OTR__ast_title/ast_title_seg6_gfx_41900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41990[] = "__OTR__ast_title/ast_title_seg6_vtx_41990";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41A20[] = "__OTR__ast_title/ast_title_seg6_gfx_41A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41A90[] = "__OTR__ast_title/ast_title_seg6_vtx_41A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41AF0[] = "__OTR__ast_title/ast_title_seg6_gfx_41AF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41B70[] = "__OTR__ast_title/ast_title_seg6_vtx_41B70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41BF0[] = "__OTR__ast_title/ast_title_seg6_gfx_41BF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41C70[] = "__OTR__ast_title/ast_title_seg6_vtx_41C70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6041CF0[] = "__OTR__ast_title/D_TITLE_6041CF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_424F0[] = "__OTR__ast_title/ast_title_seg6_gfx_424F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42560[] = "__OTR__ast_title/ast_title_seg6_vtx_42560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_425C0[] = "__OTR__ast_title/ast_title_seg6_gfx_425C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42650[] = "__OTR__ast_title/ast_title_seg6_vtx_42650";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60426E0[] = "__OTR__ast_title/D_TITLE_60426E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_428E0[] = "__OTR__ast_title/ast_title_seg6_gfx_428E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42A78[] = "__OTR__ast_title/ast_title_seg6_vtx_42A78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42AD8[] = "__OTR__ast_title/ast_title_seg6_vtx_42AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42B28[] = "__OTR__ast_title/ast_title_seg6_vtx_42B28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42B98[] = "__OTR__ast_title/ast_title_seg6_vtx_42B98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_42D70[] = "__OTR__ast_title/ast_title_seg6_gfx_42D70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42DF8[] = "__OTR__ast_title/ast_title_seg6_vtx_42DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_42EA0[] = "__OTR__ast_title/ast_title_seg6_gfx_42EA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42F88[] = "__OTR__ast_title/ast_title_seg6_vtx_42F88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43078[] = "__OTR__ast_title/ast_title_seg6_vtx_43078";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_430F0[] = "__OTR__ast_title/ast_title_seg6_gfx_430F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_431D8[] = "__OTR__ast_title/ast_title_seg6_vtx_431D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_432C8[] = "__OTR__ast_title/ast_title_seg6_vtx_432C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43340[] = "__OTR__ast_title/ast_title_seg6_gfx_43340";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_433C0[] = "__OTR__ast_title/ast_title_seg6_vtx_433C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43460[] = "__OTR__ast_title/ast_title_seg6_gfx_43460";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43568[] = "__OTR__ast_title/ast_title_seg6_vtx_43568";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_435C8[] = "__OTR__ast_title/ast_title_seg6_vtx_435C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43720[] = "__OTR__ast_title/ast_title_seg6_gfx_43720";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_437F0[] = "__OTR__ast_title/ast_title_seg6_vtx_437F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43900[] = "__OTR__ast_title/ast_title_seg6_gfx_43900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43980[] = "__OTR__ast_title/ast_title_seg6_vtx_43980";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43A10[] = "__OTR__ast_title/ast_title_seg6_gfx_43A10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43A90[] = "__OTR__ast_title/ast_title_seg6_vtx_43A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43B20[] = "__OTR__ast_title/ast_title_seg6_gfx_43B20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43BE8[] = "__OTR__ast_title/ast_title_seg6_vtx_43BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43D00[] = "__OTR__ast_title/ast_title_seg6_gfx_43D00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43DF8[] = "__OTR__ast_title/ast_title_seg6_vtx_43DF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6043F68[] = "__OTR__ast_title/D_TITLE_6043F68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44770[] = "__OTR__ast_title/ast_title_seg6_gfx_44770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44A58[] = "__OTR__ast_title/ast_title_seg6_vtx_44A58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44A98[] = "__OTR__ast_title/ast_title_seg6_vtx_44A98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44AD8[] = "__OTR__ast_title/ast_title_seg6_vtx_44AD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44C88[] = "__OTR__ast_title/ast_title_seg6_vtx_44C88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44CE8[] = "__OTR__ast_title/ast_title_seg6_vtx_44CE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44D88[] = "__OTR__ast_title/ast_title_seg6_vtx_44D88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44DE8[] = "__OTR__ast_title/ast_title_seg6_vtx_44DE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44E40[] = "__OTR__ast_title/ast_title_seg6_gfx_44E40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44EC0[] = "__OTR__ast_title/ast_title_seg6_vtx_44EC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44F40[] = "__OTR__ast_title/ast_title_seg6_gfx_44F40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44FF8[] = "__OTR__ast_title/ast_title_seg6_vtx_44FF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45100[] = "__OTR__ast_title/ast_title_seg6_gfx_45100";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_451A0[] = "__OTR__ast_title/ast_title_seg6_vtx_451A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45280[] = "__OTR__ast_title/ast_title_seg6_gfx_45280";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45320[] = "__OTR__ast_title/ast_title_seg6_vtx_45320";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45400[] = "__OTR__ast_title/ast_title_seg6_gfx_45400";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_454B8[] = "__OTR__ast_title/ast_title_seg6_vtx_454B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_455C0[] = "__OTR__ast_title/ast_title_seg6_gfx_455C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45640[] = "__OTR__ast_title/ast_title_seg6_vtx_45640";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_60456C0[] = "__OTR__ast_title/D_TITLE_60456C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45868[] = "__OTR__ast_title/ast_title_seg6_vtx_45868";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_458A8[] = "__OTR__ast_title/ast_title_seg6_vtx_458A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_458E8[] = "__OTR__ast_title/ast_title_seg6_vtx_458E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45928[] = "__OTR__ast_title/ast_title_seg6_vtx_45928";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45968[] = "__OTR__ast_title/ast_title_seg6_vtx_45968";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_459A8[] = "__OTR__ast_title/ast_title_seg6_vtx_459A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_459E8[] = "__OTR__ast_title/ast_title_seg6_vtx_459E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6045A28[] = "__OTR__ast_title/D_TITLE_6045A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6046A28[] = "__OTR__ast_title/D_TITLE_6046A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6047A28[] = "__OTR__ast_title/D_TITLE_6047A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6048A28[] = "__OTR__ast_title/D_TITLE_6048A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_6049A28[] = "__OTR__ast_title/D_TITLE_6049A28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_604AA28[] = "__OTR__ast_title/D_TITLE_604AA28";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TITLE_604BA28[] = "__OTR__ast_title/D_TITLE_604BA28";
|
||||
|
84
include/assets/ast_training.h
Normal file
84
include/assets/ast_training.h
Normal file
@ -0,0 +1,84 @@
|
||||
#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_TR_6000000[] = "__OTR__ast_training/D_TR_6000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6000480[] = "__OTR__ast_training/D_TR_6000480";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6000900[] = "__OTR__ast_training/D_TR_6000900";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6001820[] = "__OTR__ast_training/D_TR_6001820";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTrBarrierDL[] = "__OTR__ast_training/aTrBarrierDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_27F0[] = "__OTR__ast_training/ast_training_seg6_vtx_27F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_2870[] = "__OTR__ast_training/ast_training_seg6_vtx_2870";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_60028F0[] = "__OTR__ast_training/D_TR_60028F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTrBuildingDL[] = "__OTR__ast_training/aTrBuildingDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_3220[] = "__OTR__ast_training/ast_training_seg6_vtx_3220";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_32A0[] = "__OTR__ast_training/ast_training_seg6_vtx_32A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_32E0[] = "__OTR__ast_training/ast_training_seg6_vtx_32E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_3320[] = "__OTR__ast_training/ast_training_seg6_vtx_3320";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6003360[] = "__OTR__ast_training/D_TR_6003360";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6003560[] = "__OTR__ast_training/D_TR_6003560";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6003760[] = "__OTR__ast_training/D_TR_6003760";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_37F8[] = "__OTR__ast_training/ast_training_seg6_vtx_37F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_3838[] = "__OTR__ast_training/ast_training_seg6_vtx_3838";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6003878[] = "__OTR__ast_training/D_TR_6003878";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6004878[] = "__OTR__ast_training/D_TR_6004878";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6005880[] = "__OTR__ast_training/D_TR_6005880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_58D8[] = "__OTR__ast_training/ast_training_seg6_vtx_58D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6005938[] = "__OTR__ast_training/D_TR_6005938";
|
||||
|
||||
static const ALIGN_ASSET(2) char aItemTrainingRingDL[] = "__OTR__ast_training/aItemTrainingRingDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_62D8[] = "__OTR__ast_training/ast_training_seg6_vtx_62D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_64D8[] = "__OTR__ast_training/ast_training_seg6_vtx_64D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_6628[] = "__OTR__ast_training/ast_training_seg6_vtx_6628";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_training_seg6_vtx_6828[] = "__OTR__ast_training/ast_training_seg6_vtx_6828";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6006958[] = "__OTR__ast_training/D_TR_6006958";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_60069D8[] = "__OTR__ast_training/D_TR_60069D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6006A60[] = "__OTR__ast_training/D_TR_6006A60";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6006AA4[] = "__OTR__ast_training/D_TR_6006AA4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_TR_6008EF8[] = "__OTR__ast_training/D_TR_6008EF8";
|
||||
|
||||
static const char D_TR_6009B34[] = "__OTR__ast_training/D_TR_6009B34";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTrBuildingHitbox[] = "__OTR__ast_training/aTrBuildingHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aItemTrainingRingHitbox[] = "__OTR__ast_training/aItemTrainingRingHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aTrBarrierHitbox[] = "__OTR__ast_training/aTrBarrierHitbox";
|
||||
|
551
include/assets/ast_ve1_boss.h
Normal file
551
include/assets/ast_ve1_boss.h
Normal file
@ -0,0 +1,551 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9000000[] = "__OTR__ast_ve1_boss/D_VE1_9000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_148[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_148";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_188[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_188";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1C8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_2C8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_2C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90003E8[] = "__OTR__ast_ve1_boss/D_VE1_90003E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90005E8[] = "__OTR__ast_ve1_boss/D_VE1_90005E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90007F0[] = "__OTR__ast_ve1_boss/D_VE1_90007F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_9D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_9D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9000AF0[] = "__OTR__ast_ve1_boss/D_VE1_9000AF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90012F0[] = "__OTR__ast_ve1_boss/D_VE1_90012F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9002CD8[] = "__OTR__ast_ve1_boss/D_VE1_9002CD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1BlockerDL[] = "__OTR__ast_ve1_boss/aVe1BlockerDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_2DB0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_2DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9002F30[] = "__OTR__ast_ve1_boss/D_VE1_9002F30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9003330[] = "__OTR__ast_ve1_boss/D_VE1_9003330";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9003490[] = "__OTR__ast_ve1_boss/D_VE1_9003490";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9003890[] = "__OTR__ast_ve1_boss/D_VE1_9003890";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90039F0[] = "__OTR__ast_ve1_boss/D_VE1_90039F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9003DF0[] = "__OTR__ast_ve1_boss/D_VE1_9003DF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleInterior1DL[] = "__OTR__ast_ve1_boss/aVe1TempleInterior1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_3FC0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_3FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_40C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_40C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_4298[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_4298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_42D8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_42D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_4318[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_4318";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_43B8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_43B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_43F8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_43F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_4438[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_4438";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9004478[] = "__OTR__ast_ve1_boss/D_VE1_9004478";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9004878[] = "__OTR__ast_ve1_boss/D_VE1_9004878";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9005078[] = "__OTR__ast_ve1_boss/D_VE1_9005078";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9005478[] = "__OTR__ast_ve1_boss/D_VE1_9005478";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleEntranceDL[] = "__OTR__ast_ve1_boss/aVe1TempleEntranceDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_64B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_64B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_66B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_66B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_6890[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_6890";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_6A70[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_6A70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_6C50[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_6C50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_6E30[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_6E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7010[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7010";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7130[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7130";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_71D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_71D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_73D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_73D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_75C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_75C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_77C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_77C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_79C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_79C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7AC0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7AC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7CC0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7CC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7EA0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7EA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8090[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8100[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8100";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8200[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8200";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8400[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8400";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_85F0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_85F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_87E0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_87E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_89C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_89C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8BA0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8D80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8F60[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8F60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_9150[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_9150";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_9330[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_9330";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_94E0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_94E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_9680[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_9680";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9009700[] = "__OTR__ast_ve1_boss/D_VE1_9009700";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9009F00[] = "__OTR__ast_ve1_boss/D_VE1_9009F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900A300[] = "__OTR__ast_ve1_boss/D_VE1_900A300";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900AB00[] = "__OTR__ast_ve1_boss/D_VE1_900AB00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900AF00[] = "__OTR__ast_ve1_boss/D_VE1_900AF00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900B700[] = "__OTR__ast_ve1_boss/D_VE1_900B700";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900BF00[] = "__OTR__ast_ve1_boss/D_VE1_900BF00";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900C700[] = "__OTR__ast_ve1_boss/D_VE1_900C700";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1MonkeyStatueAnim[] = "__OTR__ast_ve1_boss/aVe1MonkeyStatueAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1MonkeyStatueSkel[] = "__OTR__ast_ve1_boss/aVe1MonkeyStatueSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900D180[] = "__OTR__ast_ve1_boss/D_VE1_900D180";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_D260[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_D260";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_D2C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_D2C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_D4C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_D4C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900D520[] = "__OTR__ast_ve1_boss/D_VE1_900D520";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar1DL[] = "__OTR__ast_ve1_boss/aVe1Pillar1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_DDA0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_DDA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900DF20[] = "__OTR__ast_ve1_boss/D_VE1_900DF20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_DF78[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_DF78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_900DFB8[] = "__OTR__ast_ve1_boss/D_VE1_900DFB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleBgDL[] = "__OTR__ast_ve1_boss/aVe1TempleBgDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_F018[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_F018";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleInterior2DL[] = "__OTR__ast_ve1_boss/aVe1TempleInterior2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_F0D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_F0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleInterior3DL[] = "__OTR__ast_ve1_boss/aVe1TempleInterior3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_F260[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_F260";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9010FC4[] = "__OTR__ast_ve1_boss/D_VE1_9010FC4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9010FD0[] = "__OTR__ast_ve1_boss/D_VE1_9010FD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_11048[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_11048";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1PillarDL[] = "__OTR__ast_ve1_boss/aVe1PillarDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_11300[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_11300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_114E0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_114E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_116D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_116D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_118C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_118C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9011980[] = "__OTR__ast_ve1_boss/D_VE1_9011980";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar5DL[] = "__OTR__ast_ve1_boss/aVe1Pillar5DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12240[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12240";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90123C0[] = "__OTR__ast_ve1_boss/D_VE1_90123C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90125C0[] = "__OTR__ast_ve1_boss/D_VE1_90125C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_12700[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_12700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12820[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12860[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12860";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_128A0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_128A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12A80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_12B40[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_12B40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12C60[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12C60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12CA0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12CE0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12CE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12EE0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12EE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_12F80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_12F80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13058[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13058";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_130F8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_130F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_13300[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_13300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_133B8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_133B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_134B8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_134B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_135C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_135C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13680[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13680";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13780[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13780";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9013880[] = "__OTR__ast_ve1_boss/D_VE1_9013880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13998[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13998";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13B28[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13B28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13B88[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13B88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9013C20[] = "__OTR__ast_ve1_boss/D_VE1_9013C20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13CA8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13E88[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13E88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_13EF0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_13EF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13FA8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13FA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_140A8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_140A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_141B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_141B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14270[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14270";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14370[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14370";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_14470[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_14470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14530[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14530";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14630[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_14730[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_14730";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_147F0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_147F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14970[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14970";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_14A70[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_14A70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14B48[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14BE8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14BE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9014DF0[] = "__OTR__ast_ve1_boss/D_VE1_9014DF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14EB8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14EB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14FD8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14FD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90150A0[] = "__OTR__ast_ve1_boss/D_VE1_90150A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_151F0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_151F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15230[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15230";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15270[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15270";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15370[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15370";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9015480[] = "__OTR__ast_ve1_boss/D_VE1_9015480";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_155A8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_155A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_155E8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_155E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15668[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15668";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15868[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15868";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9015900[] = "__OTR__ast_ve1_boss/D_VE1_9015900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_159D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_159D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15AE0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15AE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9015BB0[] = "__OTR__ast_ve1_boss/D_VE1_9015BB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15C88[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15C88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15D88[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15D88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_15F10[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_15F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15FB8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15FB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_161A8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_161A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_16300[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_16300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16488[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16488";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16678[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16678";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16878[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16878";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16A68[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16A68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16C68[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16C68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16E58[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16E58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_16F80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_16F80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_17028[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_17028";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_17218[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_17218";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9018BD0[] = "__OTR__ast_ve1_boss/D_VE1_9018BD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901A4B8[] = "__OTR__ast_ve1_boss/D_VE1_901A4B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901BDA8[] = "__OTR__ast_ve1_boss/D_VE1_901BDA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901C0F4[] = "__OTR__ast_ve1_boss/D_VE1_901C0F4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901DA38[] = "__OTR__ast_ve1_boss/D_VE1_901DA38";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar3DL[] = "__OTR__ast_ve1_boss/aVe1Pillar3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1DAE0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1DAE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901DC90[] = "__OTR__ast_ve1_boss/D_VE1_901DC90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1E090[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1E090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E150[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E150";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E250[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E250";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901E350[] = "__OTR__ast_ve1_boss/D_VE1_901E350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E430[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E430";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E530[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E530";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1E630[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1E630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E6F0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E6F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E850[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E850";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1E950[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1E950";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EA20[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EA20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EB10[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EB10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1ECF0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1ECF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EE08[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EE08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EE48[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EE48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EF58[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EF58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EFD8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EFD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1F020[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1F020";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F108[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F108";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F218[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F218";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F2D8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F2D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1F320[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1F320";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F418[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F418";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F508[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F508";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F5C8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F5C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901F6D0[] = "__OTR__ast_ve1_boss/D_VE1_901F6D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F788[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F788";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F7F8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F7F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901F990[] = "__OTR__ast_ve1_boss/D_VE1_901F990";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FA58[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FA58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FB78[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FB78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901FC40[] = "__OTR__ast_ve1_boss/D_VE1_901FC40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FD58[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FD58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FE18[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FE18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FE98[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FE98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_901FFB0[] = "__OTR__ast_ve1_boss/D_VE1_901FFB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_202A0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_202A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_203B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_203B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20590[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20590";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20740[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20740";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20940[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20940";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20970[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20970";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20A90[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20A90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20C90[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20C90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20D80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9020E30[] = "__OTR__ast_ve1_boss/D_VE1_9020E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9021630[] = "__OTR__ast_ve1_boss/D_VE1_9021630";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21700[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21810[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21810";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9021900[] = "__OTR__ast_ve1_boss/D_VE1_9021900";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_219B8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_219B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21A18[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21A18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9021B80[] = "__OTR__ast_ve1_boss/D_VE1_9021B80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21DF0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21DF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21ED0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_220C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_220C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22250[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22250";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22440[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22440";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22640[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22640";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22730[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22730";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9022820[] = "__OTR__ast_ve1_boss/D_VE1_9022820";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9022A20[] = "__OTR__ast_ve1_boss/D_VE1_9022A20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22AF8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22AF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22BF8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22BF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9022D80[] = "__OTR__ast_ve1_boss/D_VE1_9022D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22EA8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22EE8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22EE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22F68[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22F68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23148[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23148";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9023290[] = "__OTR__ast_ve1_boss/D_VE1_9023290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23340[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23340";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23410[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23410";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_90234D0[] = "__OTR__ast_ve1_boss/D_VE1_90234D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_235A0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_235A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23780[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_237B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_237B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9023880[] = "__OTR__ast_ve1_boss/D_VE1_9023880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23910[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23910";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar4DL[] = "__OTR__ast_ve1_boss/aVe1Pillar4DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23C60[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23C60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23CF0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23CF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23D30[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23D30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23D70[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23D70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23DB0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23DB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9024738[] = "__OTR__ast_ve1_boss/D_VE1_9024738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9024750[] = "__OTR__ast_ve1_boss/D_VE1_9024750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_247C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_247C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_9024940[] = "__OTR__ast_ve1_boss/D_VE1_9024940";
|
||||
|
160
include/assets/ast_venom_1.h
Normal file
160
include/assets/ast_venom_1.h
Normal file
@ -0,0 +1,160 @@
|
||||
#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_VE1_6000000[] = "__OTR__ast_venom_1/D_VE1_6000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6000A80[] = "__OTR__ast_venom_1/D_VE1_6000A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TitleCardTex[] = "__OTR__ast_venom_1/aVe1TitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6001B80[] = "__OTR__ast_venom_1/D_VE1_6001B80";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1EnemyGateDL[] = "__OTR__ast_venom_1/aVe1EnemyGateDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_26D8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_26D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_27F8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_27F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_28F8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_28F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_60029F8[] = "__OTR__ast_venom_1/D_VE1_60029F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6002A78[] = "__OTR__ast_venom_1/D_VE1_6002A78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6002AA8[] = "__OTR__ast_venom_1/D_VE1_6002AA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6002EA8[] = "__OTR__ast_venom_1/D_VE1_6002EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6003078[] = "__OTR__ast_venom_1/D_VE1_6003078";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6003478[] = "__OTR__ast_venom_1/D_VE1_6003478";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1WatchPostDL[] = "__OTR__ast_venom_1/aVe1WatchPostDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_37E0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_37E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_3910[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_3910";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_3970[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_3970";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6003B10[] = "__OTR__ast_venom_1/D_VE1_6003B10";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1EnemyGateDoorLeftDL[] = "__OTR__ast_venom_1/aVe1EnemyGateDoorLeftDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_43A8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_43A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1EnemyGateDoorRightDL[] = "__OTR__ast_venom_1/aVe1EnemyGateDoorRightDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_4490[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_4490";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_60044D0[] = "__OTR__ast_venom_1/D_VE1_60044D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_60045D0[] = "__OTR__ast_venom_1/D_VE1_60045D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_60046F0[] = "__OTR__ast_venom_1/D_VE1_60046F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_4740[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_4740";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6004780[] = "__OTR__ast_venom_1/D_VE1_6004780";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1GeneratorDL[] = "__OTR__ast_venom_1/aVe1GeneratorDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_5990[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_5990";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_5AD0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_5AD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_5CB0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_5CB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_5CF0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_5CF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6005D50[] = "__OTR__ast_venom_1/D_VE1_6005D50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6005E50[] = "__OTR__ast_venom_1/D_VE1_6005E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6005F90[] = "__OTR__ast_venom_1/D_VE1_6005F90";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6006390[] = "__OTR__ast_venom_1/D_VE1_6006390";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6006530[] = "__OTR__ast_venom_1/D_VE1_6006530";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6006630[] = "__OTR__ast_venom_1/D_VE1_6006630";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_60066D0[] = "__OTR__ast_venom_1/D_VE1_60066D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_66F0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_66F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6006750[] = "__OTR__ast_venom_1/D_VE1_6006750";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1HallwayObstacleDL[] = "__OTR__ast_venom_1/aVe1HallwayObstacleDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7028[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7028";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7218[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7218";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1SceneryWall3DL[] = "__OTR__ast_venom_1/aVe1SceneryWall3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7468[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7468";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_60074E8[] = "__OTR__ast_venom_1/D_VE1_60074E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Wall2DL[] = "__OTR__ast_venom_1/aVe1Wall2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7D48[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7D48";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Wall1DL[] = "__OTR__ast_venom_1/aVe1Wall1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7DE8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7DE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6007E30[] = "__OTR__ast_venom_1/D_VE1_6007E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6007E74[] = "__OTR__ast_venom_1/D_VE1_6007E74";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_6010088[] = "__OTR__ast_venom_1/D_VE1_6010088";
|
||||
|
||||
static const char D_VE1_601B1E4[] = "__OTR__ast_venom_1/D_VE1_601B1E4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar5Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar5Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_601B474[] = "__OTR__ast_venom_1/D_VE1_601B474";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE1_601B4C4[] = "__OTR__ast_venom_1/D_VE1_601B4C4";
|
||||
|
||||
static const ALIGN_ASSET(2) char Ve1Wall1Hitbox[] = "__OTR__ast_venom_1/Ve1Wall1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Wall2Hitbox[] = "__OTR__ast_venom_1/aVe1Wall2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1SceneryWall3Hitbox[] = "__OTR__ast_venom_1/aVe1SceneryWall3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1HallwayObstacleHitbox[] = "__OTR__ast_venom_1/aVe1HallwayObstacleHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1GeneratorHitbox[] = "__OTR__ast_venom_1/aVe1GeneratorHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1WatchPostHitbox[] = "__OTR__ast_venom_1/aVe1WatchPostHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleEntranceHitbox[] = "__OTR__ast_venom_1/aVe1TempleEntranceHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleInterior1Hitbox[] = "__OTR__ast_venom_1/aVe1TempleInterior1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleInterior2Hitbox[] = "__OTR__ast_venom_1/aVe1TempleInterior2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1TempleInterior3Hitbox[] = "__OTR__ast_venom_1/aVe1TempleInterior3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar1Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar2Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar3Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1Pillar4Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar4Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1MonkeyStatueHitbox[] = "__OTR__ast_venom_1/aVe1MonkeyStatueHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe1EnemyGateHitbox[] = "__OTR__ast_venom_1/aVe1EnemyGateHitbox";
|
||||
|
355
include/assets/ast_venom_2.h
Normal file
355
include/assets/ast_venom_2.h
Normal file
@ -0,0 +1,355 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
#include "sf64level.h"
|
||||
#include "sf64event.h"
|
||||
#include "sf64player.h"
|
||||
#include "sf64audio_external.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6000000[] = "__OTR__ast_venom_2/D_VE2_6000000";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6000A80[] = "__OTR__ast_venom_2/D_VE2_6000A80";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2TitleCardTex[] = "__OTR__ast_venom_2/aVe2TitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_60020D0[] = "__OTR__ast_venom_2/D_VE2_60020D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6002890[] = "__OTR__ast_venom_2/D_VE2_6002890";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndPathExitDL[] = "__OTR__ast_venom_2/aAndPathExitDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2B98[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2B98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2C58[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2C58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2D18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2E98[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2E98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2F18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2F18";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndPathIntersectionDL[] = "__OTR__ast_venom_2/aAndPathIntersectionDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_3058[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_3058";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_60030D8[] = "__OTR__ast_venom_2/D_VE2_60030D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_60038E0[] = "__OTR__ast_venom_2/D_VE2_60038E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_3930[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_3930";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6003970[] = "__OTR__ast_venom_2/D_VE2_6003970";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndPathEntranceDL[] = "__OTR__ast_venom_2/aAndPathEntranceDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4368[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4368";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4468[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4468";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4568[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4568";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4668[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4668";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4768[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4768";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6004888[] = "__OTR__ast_venom_2/D_VE2_6004888";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6005088[] = "__OTR__ast_venom_2/D_VE2_6005088";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6005888[] = "__OTR__ast_venom_2/D_VE2_6005888";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6006088[] = "__OTR__ast_venom_2/D_VE2_6006088";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndPathWallsDL[] = "__OTR__ast_venom_2/aAndPathWallsDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_6A18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_6A18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_6B18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_6B18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_6C18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_6C18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_6D18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_6D18";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6006E20[] = "__OTR__ast_venom_2/D_VE2_6006E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7038[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7038";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7138[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7138";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7238[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7238";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_72F8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_72F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7498[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7498";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6007650[] = "__OTR__ast_venom_2/D_VE2_6007650";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7820[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_79A0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_79A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7BA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7C20[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7C20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7CA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndLaserEmitterDL[] = "__OTR__ast_venom_2/aAndLaserEmitterDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7F30[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7F30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8030[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8030";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8130[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8130";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6008170[] = "__OTR__ast_venom_2/D_VE2_6008170";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2TowerDL[] = "__OTR__ast_venom_2/aVe2TowerDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8568[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8568";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8668[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8668";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8768[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8768";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8868[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8868";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_89F8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_89F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6008AF8[] = "__OTR__ast_venom_2/D_VE2_6008AF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aAndBrainWasteDL[] = "__OTR__ast_venom_2/aAndBrainWasteDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_9350[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_9350";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6009390[] = "__OTR__ast_venom_2/D_VE2_6009390";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6009B90[] = "__OTR__ast_venom_2/D_VE2_6009B90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_9CB0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_9CB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6009E80[] = "__OTR__ast_venom_2/D_VE2_6009E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600A680[] = "__OTR__ast_venom_2/D_VE2_600A680";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_AA78[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_AA78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_AC78[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_AC78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_AE78[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_AE78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_B078[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_B078";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_B278[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_B278";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_B478[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_B478";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_B678[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_B678";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600B708[] = "__OTR__ast_venom_2/D_VE2_600B708";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C038[] = "__OTR__ast_venom_2/D_VE2_600C038";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C0A4[] = "__OTR__ast_venom_2/D_VE2_600C0A4";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C200[] = "__OTR__ast_venom_2/D_VE2_600C200";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C2AC[] = "__OTR__ast_venom_2/D_VE2_600C2AC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C2D0[] = "__OTR__ast_venom_2/D_VE2_600C2D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_C320[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_C320";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C360[] = "__OTR__ast_venom_2/D_VE2_600C360";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C560[] = "__OTR__ast_venom_2/D_VE2_600C560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_C5B0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_C5B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C5F0[] = "__OTR__ast_venom_2/D_VE2_600C5F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C7F0[] = "__OTR__ast_venom_2/D_VE2_600C7F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_C850[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_C850";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600C8F0[] = "__OTR__ast_venom_2/D_VE2_600C8F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_C970[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_C970";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600CA50[] = "__OTR__ast_venom_2/D_VE2_600CA50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_CAD0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_CAD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600CBB0[] = "__OTR__ast_venom_2/D_VE2_600CBB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_CEA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_CEA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_D090[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_D090";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_D270[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_D270";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_D470[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_D470";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_D660[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_D660";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600D7F0[] = "__OTR__ast_venom_2/D_VE2_600D7F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600DFF0[] = "__OTR__ast_venom_2/D_VE2_600DFF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E1A8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E1A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E238[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E238";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E348[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E348";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E378[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E378";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E3A8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E3A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600E3E0[] = "__OTR__ast_venom_2/D_VE2_600E3E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E598[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E598";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E658[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E658";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E6E8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E6E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E718[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E718";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E748[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E748";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600E780[] = "__OTR__ast_venom_2/D_VE2_600E780";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E938[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E938";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EA18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EA18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EAA8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EAA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EAD8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EAD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EB08[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EB08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600EB40[] = "__OTR__ast_venom_2/D_VE2_600EB40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_ECF8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_ECF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EDC8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EDC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EE58[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EE58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EE88[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EE88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EEB8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EEB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600EEF0[] = "__OTR__ast_venom_2/D_VE2_600EEF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F0A8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F0A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F168[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F168";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F1F8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F1F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F228[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F228";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F258[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F258";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600F290[] = "__OTR__ast_venom_2/D_VE2_600F290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F448[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F448";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F548[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F548";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F5D8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F5D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F608[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F608";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F638[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F638";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600F670[] = "__OTR__ast_venom_2/D_VE2_600F670";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F6C0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F6C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_600F700[] = "__OTR__ast_venom_2/D_VE2_600F700";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6010700[] = "__OTR__ast_venom_2/D_VE2_6010700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_107C8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_107C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2MountainDL[] = "__OTR__ast_venom_2/aVe2MountainDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_10A40[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_10A40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_10C20[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_10C20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6010CA0[] = "__OTR__ast_venom_2/D_VE2_6010CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_60114A0[] = "__OTR__ast_venom_2/D_VE2_60114A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_gfx_11CA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_gfx_11CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12198[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12198";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12398[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12398";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12598[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12598";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12778[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12778";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12978[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12978";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12B78[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12B78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12CA8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12EA8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12EA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13088[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13088";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13288[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13288";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13468[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13468";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13648[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13648";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13848[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13848";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13A08[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13A08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6013AF8[] = "__OTR__ast_venom_2/D_VE2_6013AF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2AndrossGateAnim[] = "__OTR__ast_venom_2/aVe2AndrossGateAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2AndrossGateSkel[] = "__OTR__ast_venom_2/aVe2AndrossGateSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2BaseAnim[] = "__OTR__ast_venom_2/aVe2BaseAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2BaseSkel[] = "__OTR__ast_venom_2/aVe2BaseSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_gfx_149F0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_gfx_149F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_14A98[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_14A98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_14B58[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_14B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_gfx_14BA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_gfx_14BA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_14C48[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_14C48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_14D08[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_14D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6014D50[] = "__OTR__ast_venom_2/D_VE2_6014D50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6014D94[] = "__OTR__ast_venom_2/D_VE2_6014D94";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6014FEC[] = "__OTR__ast_venom_2/D_VE2_6014FEC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VE2_6016374[] = "__OTR__ast_venom_2/D_VE2_6016374";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2TowerHitbox[] = "__OTR__ast_venom_2/aVe2TowerHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2BaseHitbox[] = "__OTR__ast_venom_2/aVe2BaseHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVe2MountainHitbox[] = "__OTR__ast_venom_2/aVe2MountainHitbox";
|
||||
|
1050
include/assets/ast_versus.h
Normal file
1050
include/assets/ast_versus.h
Normal file
File diff suppressed because it is too large
Load Diff
139
include/assets/ast_vs_menu.h
Normal file
139
include/assets/ast_vs_menu.h
Normal file
@ -0,0 +1,139 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsPlayerNum1Tex[] = "__OTR__ast_vs_menu/aVsPlayerNum1Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsPlayerNum2Tex[] = "__OTR__ast_vs_menu/aVsPlayerNum2Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsPlayerNum3Tex[] = "__OTR__ast_vs_menu/aVsPlayerNum3Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsPlayerNum4Tex[] = "__OTR__ast_vs_menu/aVsPlayerNum4Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7000490[] = "__OTR__ast_vs_menu/D_VS_MENU_7000490";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsTextContTex[] = "__OTR__ast_vs_menu/aVsTextContTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7001030[] = "__OTR__ast_vs_menu/D_VS_MENU_7001030";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7001270[] = "__OTR__ast_vs_menu/D_VS_MENU_7001270";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsTextCorneriaTex[] = "__OTR__ast_vs_menu/aVsTextCorneriaTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsTextSectorZTex[] = "__OTR__ast_vs_menu/aVsTextSectorZTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsTextKatinaTex[] = "__OTR__ast_vs_menu/aVsTextKatinaTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7001DF0[] = "__OTR__ast_vs_menu/D_VS_MENU_7001DF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7002110[] = "__OTR__ast_vs_menu/D_VS_MENU_7002110";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_70024D0[] = "__OTR__ast_vs_menu/D_VS_MENU_70024D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7002730[] = "__OTR__ast_vs_menu/D_VS_MENU_7002730";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7002990[] = "__OTR__ast_vs_menu/D_VS_MENU_7002990";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7002BF0[] = "__OTR__ast_vs_menu/D_VS_MENU_7002BF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7002E50[] = "__OTR__ast_vs_menu/D_VS_MENU_7002E50";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsHandicapLvl1Tex[] = "__OTR__ast_vs_menu/aVsHandicapLvl1Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsHandicapLvl2Tex[] = "__OTR__ast_vs_menu/aVsHandicapLvl2Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsHandicapLvl3Tex[] = "__OTR__ast_vs_menu/aVsHandicapLvl3Tex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7003650[] = "__OTR__ast_vs_menu/D_VS_MENU_7003650";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7003830[] = "__OTR__ast_vs_menu/D_VS_MENU_7003830";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7003C70[] = "__OTR__ast_vs_menu/D_VS_MENU_7003C70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7003D70[] = "__OTR__ast_vs_menu/D_VS_MENU_7003D70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7003E10[] = "__OTR__ast_vs_menu/D_VS_MENU_7003E10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7003F10[] = "__OTR__ast_vs_menu/D_VS_MENU_7003F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7004010[] = "__OTR__ast_vs_menu/D_VS_MENU_7004010";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7004050[] = "__OTR__ast_vs_menu/D_VS_MENU_7004050";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7004150[] = "__OTR__ast_vs_menu/D_VS_MENU_7004150";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_70041F0[] = "__OTR__ast_vs_menu/D_VS_MENU_70041F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_70042F0[] = "__OTR__ast_vs_menu/D_VS_MENU_70042F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7004360[] = "__OTR__ast_vs_menu/D_VS_MENU_7004360";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7004460[] = "__OTR__ast_vs_menu/D_VS_MENU_7004460";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_70044D0[] = "__OTR__ast_vs_menu/D_VS_MENU_70044D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7004990[] = "__OTR__ast_vs_menu/D_VS_MENU_7004990";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsFoxNameTex[] = "__OTR__ast_vs_menu/aVsFoxNameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsFoxNameTLUT[] = "__OTR__ast_vs_menu/aVsFoxNameTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsPeppyNameTex[] = "__OTR__ast_vs_menu/aVsPeppyNameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsPeppyNameTLUT[] = "__OTR__ast_vs_menu/aVsPeppyNameTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsSlippyNameTex[] = "__OTR__ast_vs_menu/aVsSlippyNameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsSlippyNameTLUT[] = "__OTR__ast_vs_menu/aVsSlippyNameTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsFalcoNameTex[] = "__OTR__ast_vs_menu/aVsFalcoNameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsFalcoNameTLUT[] = "__OTR__ast_vs_menu/aVsFalcoNameTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_70051D0[] = "__OTR__ast_vs_menu/D_VS_MENU_70051D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_70055D0[] = "__OTR__ast_vs_menu/D_VS_MENU_70055D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsCorneriaTex[] = "__OTR__ast_vs_menu/aVsCorneriaTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsCorneriaTLUT[] = "__OTR__ast_vs_menu/aVsCorneriaTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsSectorZTex[] = "__OTR__ast_vs_menu/aVsSectorZTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsSectorZTLUT[] = "__OTR__ast_vs_menu/aVsSectorZTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsKatinaTex[] = "__OTR__ast_vs_menu/aVsKatinaTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsKatinaTLUT[] = "__OTR__ast_vs_menu/aVsKatinaTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsFalcoFaceTex[] = "__OTR__ast_vs_menu/aVsFalcoFaceTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7007FC0[] = "__OTR__ast_vs_menu/D_VS_MENU_7007FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsFoxFaceTex[] = "__OTR__ast_vs_menu/aVsFoxFaceTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7009E00[] = "__OTR__ast_vs_menu/D_VS_MENU_7009E00";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsPeppyFaceTex[] = "__OTR__ast_vs_menu/aVsPeppyFaceTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_700BC40[] = "__OTR__ast_vs_menu/D_VS_MENU_700BC40";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsSlippyFaceTex[] = "__OTR__ast_vs_menu/aVsSlippyFaceTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_700DA80[] = "__OTR__ast_vs_menu/D_VS_MENU_700DA80";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsN64ConsoleTex[] = "__OTR__ast_vs_menu/aVsN64ConsoleTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsHandicapFrameTex[] = "__OTR__ast_vs_menu/aVsHandicapFrameTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char aVsHandicapFrameTLUT[] = "__OTR__ast_vs_menu/aVsHandicapFrameTLUT";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7012410[] = "__OTR__ast_vs_menu/D_VS_MENU_7012410";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_vs_menu_seg7_vtx_124A8[] = "__OTR__ast_vs_menu/ast_vs_menu_seg7_vtx_124A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_70124E8[] = "__OTR__ast_vs_menu/D_VS_MENU_70124E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_VS_MENU_7012568[] = "__OTR__ast_vs_menu/D_VS_MENU_7012568";
|
||||
|
55
include/assets/ast_warp_zone.h
Normal file
55
include/assets/ast_warp_zone.h
Normal file
@ -0,0 +1,55 @@
|
||||
#pragma once
|
||||
|
||||
#include "gfx.h"
|
||||
#include "sf64object.h"
|
||||
|
||||
static const ALIGN_ASSET(2) char aWzSxEnemy1DL[] = "__OTR__ast_warp_zone/aWzSxEnemy1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_120[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_120";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_190[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_190";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_200[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_200";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_WZ_7000260[] = "__OTR__ast_warp_zone/D_WZ_7000260";
|
||||
|
||||
static const ALIGN_ASSET(2) char aWzGateDL[] = "__OTR__ast_warp_zone/aWzGateDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_550[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_550";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_750[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_790[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_790";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_850[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_850";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_890[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_890";
|
||||
|
||||
static const ALIGN_ASSET(2) char aWzMeteor2DL[] = "__OTR__ast_warp_zone/aWzMeteor2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_9B0[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_9B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_WZ_7000A30[] = "__OTR__ast_warp_zone/D_WZ_7000A30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_WZ_7000C30[] = "__OTR__ast_warp_zone/D_WZ_7000C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char aWzPillar1DL[] = "__OTR__ast_warp_zone/aWzPillar1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_D00[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_D00";
|
||||
|
||||
static const ALIGN_ASSET(2) char aWzMeteor1DL[] = "__OTR__ast_warp_zone/aWzMeteor1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_FA0[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_FA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aWzPillar2DL[] = "__OTR__ast_warp_zone/aWzPillar2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_1240[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_1240";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_13C0[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_13C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_WZ_7001540[] = "__OTR__ast_warp_zone/D_WZ_7001540";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_1590[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_1590";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_WZ_70015D0[] = "__OTR__ast_warp_zone/D_WZ_70015D0";
|
||||
|
808
include/assets/ast_zoness.h
Normal file
808
include/assets/ast_zoness.h
Normal file
@ -0,0 +1,808 @@
|
||||
#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 aZoTitleCardTex[] = "__OTR__ast_zoness/aZoTitleCardTex";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6000C40[] = "__OTR__ast_zoness/D_ZO_6000C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_D28[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_D28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_D88[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_D88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_E48[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_E48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6000E98[] = "__OTR__ast_zoness/D_ZO_6000E98";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6001098[] = "__OTR__ast_zoness/D_ZO_6001098";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoDodoraHeadDL[] = "__OTR__ast_zoness/aZoDodoraHeadDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_14D0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_14D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1510[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1510";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1560[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_15D0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_15D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1670[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1670";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1750[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_17C0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_17C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6001810[] = "__OTR__ast_zoness/D_ZO_6001810";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6002010[] = "__OTR__ast_zoness/D_ZO_6002010";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6002210[] = "__OTR__ast_zoness/D_ZO_6002210";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6002410[] = "__OTR__ast_zoness/D_ZO_6002410";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6002610[] = "__OTR__ast_zoness/D_ZO_6002610";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6002810[] = "__OTR__ast_zoness/D_ZO_6002810";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6002A10[] = "__OTR__ast_zoness/D_ZO_6002A10";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoRadarBuoyDL[] = "__OTR__ast_zoness/aZoRadarBuoyDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_2F08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_2F08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_30A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_30A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6003288[] = "__OTR__ast_zoness/D_ZO_6003288";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6003488[] = "__OTR__ast_zoness/D_ZO_6003488";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6003690[] = "__OTR__ast_zoness/D_ZO_6003690";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_37B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_37B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_3870[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_3870";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6003930[] = "__OTR__ast_zoness/D_ZO_6003930";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6003B30[] = "__OTR__ast_zoness/D_ZO_6003B30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6004330[] = "__OTR__ast_zoness/D_ZO_6004330";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6004380[] = "__OTR__ast_zoness/D_ZO_6004380";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_4418[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_4418";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6004450[] = "__OTR__ast_zoness/D_ZO_6004450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_4610[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_4610";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_4800[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_4800";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_48B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_48B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6004970[] = "__OTR__ast_zoness/D_ZO_6004970";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6004A70[] = "__OTR__ast_zoness/D_ZO_6004A70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6004B00[] = "__OTR__ast_zoness/D_ZO_6004B00";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoPatrolBoatDL[] = "__OTR__ast_zoness/aZoPatrolBoatDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_4FD8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_4FD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5018[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5018";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5208[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5208";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5238[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5238";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5418[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5418";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_54B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_54B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_56B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_56B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5718[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5718";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5918[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5918";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6005958[] = "__OTR__ast_zoness/D_ZO_6005958";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6005B58[] = "__OTR__ast_zoness/D_ZO_6005B58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6006360[] = "__OTR__ast_zoness/D_ZO_6006360";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_66E0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_66E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_67B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_67B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6830[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6830";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6A10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6A10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6C10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6C10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6C40[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6C40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6D10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6D10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6D40[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6D40";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6EE0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6EE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6FC0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6FC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_71C0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_71C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6007230[] = "__OTR__ast_zoness/D_ZO_6007230";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6007430[] = "__OTR__ast_zoness/D_ZO_6007430";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6007C30[] = "__OTR__ast_zoness/D_ZO_6007C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6007E30[] = "__OTR__ast_zoness/D_ZO_6007E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6008030[] = "__OTR__ast_zoness/D_ZO_6008030";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6008230[] = "__OTR__ast_zoness/D_ZO_6008230";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6008430[] = "__OTR__ast_zoness/D_ZO_6008430";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6008630[] = "__OTR__ast_zoness/D_ZO_6008630";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6008830[] = "__OTR__ast_zoness/D_ZO_6008830";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6009ED0[] = "__OTR__ast_zoness/D_ZO_6009ED0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_600B0E0[] = "__OTR__ast_zoness/D_ZO_600B0E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_600C780[] = "__OTR__ast_zoness/D_ZO_600C780";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_600D990[] = "__OTR__ast_zoness/D_ZO_600D990";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoBirdAnim[] = "__OTR__ast_zoness/aZoBirdAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoBirdSkel[] = "__OTR__ast_zoness/aZoBirdSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoOilRig3DL[] = "__OTR__ast_zoness/aZoOilRig3DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_E950[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_E950";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_EB50[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_EB50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_EC10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_EC10";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoOilRig2DL[] = "__OTR__ast_zoness/aZoOilRig2DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_EE58[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_EE58";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F058[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F058";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F258[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F258";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F298[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F298";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F498[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F498";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoOilRig1DL[] = "__OTR__ast_zoness/aZoOilRig1DL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F718[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F718";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F918[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F918";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_FB18[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_FB18";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_FCD8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_FCD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_600FE58[] = "__OTR__ast_zoness/D_ZO_600FE58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6010658[] = "__OTR__ast_zoness/D_ZO_6010658";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6010E58[] = "__OTR__ast_zoness/D_ZO_6010E58";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6011660[] = "__OTR__ast_zoness/D_ZO_6011660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_117C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_117C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_11828[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_11828";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_11868[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_11868";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_118C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_118C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6011928[] = "__OTR__ast_zoness/D_ZO_6011928";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6012128[] = "__OTR__ast_zoness/D_ZO_6012128";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6012930[] = "__OTR__ast_zoness/D_ZO_6012930";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_12A98[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_12A98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_12C38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_12C38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_12E38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_12E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6013010[] = "__OTR__ast_zoness/D_ZO_6013010";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_13108[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_13108";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_13188[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_13188";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_13228[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_13228";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6013330[] = "__OTR__ast_zoness/D_ZO_6013330";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_133A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_133A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6013480[] = "__OTR__ast_zoness/D_ZO_6013480";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_134D0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_134D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6013510[] = "__OTR__ast_zoness/D_ZO_6013510";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6014510[] = "__OTR__ast_zoness/D_ZO_6014510";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6015430[] = "__OTR__ast_zoness/D_ZO_6015430";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6016350[] = "__OTR__ast_zoness/D_ZO_6016350";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_163A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_163A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60163E0[] = "__OTR__ast_zoness/D_ZO_60163E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_164B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_164B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16510[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16510";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_165A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_165A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60165D0[] = "__OTR__ast_zoness/D_ZO_60165D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_166B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_166B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16728[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16728";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_167F8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_167F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6016880[] = "__OTR__ast_zoness/D_ZO_6016880";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16968[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16968";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_169C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_169C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16AE8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16AE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6016B50[] = "__OTR__ast_zoness/D_ZO_6016B50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16C30[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16C30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16C90[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16C90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16D30[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16D30";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6016D90[] = "__OTR__ast_zoness/D_ZO_6016D90";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16DE8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16DE8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6016E30[] = "__OTR__ast_zoness/D_ZO_6016E30";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16E88[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16E88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6016EC8[] = "__OTR__ast_zoness/D_ZO_6016EC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60176D0[] = "__OTR__ast_zoness/D_ZO_60176D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_17728[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_17728";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6017770[] = "__OTR__ast_zoness/D_ZO_6017770";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_177C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_177C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6017810[] = "__OTR__ast_zoness/D_ZO_6017810";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_17868[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_17868";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60178B0[] = "__OTR__ast_zoness/D_ZO_60178B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_17908[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_17908";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoBallDL[] = "__OTR__ast_zoness/aZoBallDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_179A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_179A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60179D8[] = "__OTR__ast_zoness/D_ZO_60179D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60181E0[] = "__OTR__ast_zoness/D_ZO_60181E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18270[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18270";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_182B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_182B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60182E0[] = "__OTR__ast_zoness/D_ZO_60182E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6018550[] = "__OTR__ast_zoness/D_ZO_6018550";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601863C[] = "__OTR__ast_zoness/D_ZO_601863C";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6018660[] = "__OTR__ast_zoness/D_ZO_6018660";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_186B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_186B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60186E8[] = "__OTR__ast_zoness/D_ZO_60186E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6018AF0[] = "__OTR__ast_zoness/D_ZO_6018AF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18B48[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6018B78[] = "__OTR__ast_zoness/D_ZO_6018B78";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6018C80[] = "__OTR__ast_zoness/D_ZO_6018C80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18D38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18DB8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18DB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6018E80[] = "__OTR__ast_zoness/D_ZO_6018E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18F20[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18F20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18FB0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18FB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6019040[] = "__OTR__ast_zoness/D_ZO_6019040";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60195EC[] = "__OTR__ast_zoness/D_ZO_60195EC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6019738[] = "__OTR__ast_zoness/D_ZO_6019738";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601996C[] = "__OTR__ast_zoness/D_ZO_601996C";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoSarumarineSkel[] = "__OTR__ast_zoness/aZoSarumarineSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6019EB0[] = "__OTR__ast_zoness/D_ZO_6019EB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_19F08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_19F08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_19F50[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_19F50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A0A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A0A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A170[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A170";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A230[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A230";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601A340[] = "__OTR__ast_zoness/D_ZO_601A340";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A410[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A410";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A450[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1A560[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1A560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A5C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A5C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1A690[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1A690";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A748[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A748";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A788[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A788";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601AA48[] = "__OTR__ast_zoness/D_ZO_601AA48";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601AB14[] = "__OTR__ast_zoness/D_ZO_601AB14";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601AFB8[] = "__OTR__ast_zoness/D_ZO_601AFB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601B184[] = "__OTR__ast_zoness/D_ZO_601B184";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601B1C0[] = "__OTR__ast_zoness/D_ZO_601B1C0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B260[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B260";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B2F0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B2F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601B3B0[] = "__OTR__ast_zoness/D_ZO_601B3B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B450[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B450";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B4E0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B4E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601B570[] = "__OTR__ast_zoness/D_ZO_601B570";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B610[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B610";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B680[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B680";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601B710[] = "__OTR__ast_zoness/D_ZO_601B710";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B7B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B7B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B840[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B840";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601B8F0[] = "__OTR__ast_zoness/D_ZO_601B8F0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B990[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B990";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1BA20[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1BA20";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601BAD0[] = "__OTR__ast_zoness/D_ZO_601BAD0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1BB38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1BB38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601BBB8[] = "__OTR__ast_zoness/D_ZO_601BBB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601BCC0[] = "__OTR__ast_zoness/D_ZO_601BCC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1BD80[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1BD80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1BF80[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1BF80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C038[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C038";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C098[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C098";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1C0D0[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1C0D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C1B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C1B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C350[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C350";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601C390[] = "__OTR__ast_zoness/D_ZO_601C390";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601C590[] = "__OTR__ast_zoness/D_ZO_601C590";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C700[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C700";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C750[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C750";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C7A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C7A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C800[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C800";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601C8E0[] = "__OTR__ast_zoness/D_ZO_601C8E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601D0E0[] = "__OTR__ast_zoness/D_ZO_601D0E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601D2E0[] = "__OTR__ast_zoness/D_ZO_601D2E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1D4E0[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1D4E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1D548[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1D548";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601D5B0[] = "__OTR__ast_zoness/D_ZO_601D5B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1D618[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1D618";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601D680[] = "__OTR__ast_zoness/D_ZO_601D680";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1D748[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1D748";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1D808[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1D808";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1D8D0[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1D8D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DBC8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DBC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DDB8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DDB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DE48[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DE48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DE88[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DE88";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DF68[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DF68";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E008[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E008";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E048[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E048";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E248[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E248";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1E290[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1E290";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E438[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E438";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E4D8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E4D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E578[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E578";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E5C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E5C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601E618[] = "__OTR__ast_zoness/D_ZO_601E618";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1E820[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1E820";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E9C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E9C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EB38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EB38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EB78[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EB78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EC78[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EC78";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1ED50[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1ED50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EE28[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EE28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EF08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EF08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1EF70[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1EF70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F020[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F020";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F200[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F200";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601F260[] = "__OTR__ast_zoness/D_ZO_601F260";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F300[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F300";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F360[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F360";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601F420[] = "__OTR__ast_zoness/D_ZO_601F420";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F4D8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F4D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F558[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F558";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601F620[] = "__OTR__ast_zoness/D_ZO_601F620";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F6D8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F6D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F758[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F758";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoSarumarinePeriscopeAnim[] = "__OTR__ast_zoness/aZoSarumarinePeriscopeAnim";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoSarumarinePeriscopeSkel[] = "__OTR__ast_zoness/aZoSarumarinePeriscopeSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601F940[] = "__OTR__ast_zoness/D_ZO_601F940";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F9E8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F9E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1FAA8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1FAA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_601FBC4[] = "__OTR__ast_zoness/D_ZO_601FBC4";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoBarrierSkel[] = "__OTR__ast_zoness/aZoBarrierSkel";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoIslandDL[] = "__OTR__ast_zoness/aZoIslandDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1FDC0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1FDC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1FFC0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1FFC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60201B0[] = "__OTR__ast_zoness/D_ZO_60201B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60209B0[] = "__OTR__ast_zoness/D_ZO_60209B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20A50[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20A50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20AE0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20AE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6020B70[] = "__OTR__ast_zoness/D_ZO_6020B70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20C10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20C10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20CA0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20CA0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6020D50[] = "__OTR__ast_zoness/D_ZO_6020D50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20DF0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20DF0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20E80[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20E80";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6020F10[] = "__OTR__ast_zoness/D_ZO_6020F10";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20FB8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20FB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_210A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_210A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6021100[] = "__OTR__ast_zoness/D_ZO_6021100";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_211A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_211A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21260[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21260";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60212B0[] = "__OTR__ast_zoness/D_ZO_60212B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60214B0[] = "__OTR__ast_zoness/D_ZO_60214B0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21568[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21568";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_215C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_215C8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60216A8[] = "__OTR__ast_zoness/D_ZO_60216A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6021ABC[] = "__OTR__ast_zoness/D_ZO_6021ABC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6021B88[] = "__OTR__ast_zoness/D_ZO_6021B88";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6021BB0[] = "__OTR__ast_zoness/D_ZO_6021BB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21C08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21C08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6021C50[] = "__OTR__ast_zoness/D_ZO_6021C50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21CA8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6021CE0[] = "__OTR__ast_zoness/D_ZO_6021CE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21D38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6021D80[] = "__OTR__ast_zoness/D_ZO_6021D80";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21DD8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21DD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6021E20[] = "__OTR__ast_zoness/D_ZO_6021E20";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21F00[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21FB0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21FB0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22050[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22050";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60220A0[] = "__OTR__ast_zoness/D_ZO_60220A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60222A0[] = "__OTR__ast_zoness/D_ZO_60222A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22438[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22438";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22628[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22628";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22718[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22718";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22748[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22748";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_227A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_227A8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60227D8[] = "__OTR__ast_zoness/D_ZO_60227D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60229D8[] = "__OTR__ast_zoness/D_ZO_60229D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6022BE0[] = "__OTR__ast_zoness/D_ZO_6022BE0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22CA8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22CA8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22D08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22D38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22D38";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6022D70[] = "__OTR__ast_zoness/D_ZO_6022D70";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22E38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22E38";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22E98[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22E98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22EC8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22EC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6022F00[] = "__OTR__ast_zoness/D_ZO_6022F00";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22FC8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22FC8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23028[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23028";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23058[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23058";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6023088[] = "__OTR__ast_zoness/D_ZO_6023088";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6023288[] = "__OTR__ast_zoness/D_ZO_6023288";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6023488[] = "__OTR__ast_zoness/D_ZO_6023488";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6023690[] = "__OTR__ast_zoness/D_ZO_6023690";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_236E8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_236E8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoDodoraTailDL[] = "__OTR__ast_zoness/aZoDodoraTailDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23790[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23790";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60237E0[] = "__OTR__ast_zoness/D_ZO_60237E0";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoDodoraBodyDL[] = "__OTR__ast_zoness/aZoDodoraBodyDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23B48[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23B48";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23C28[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23C28";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23C98[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23C98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23D08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23D08";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6023D50[] = "__OTR__ast_zoness/D_ZO_6023D50";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23DD8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23DD8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23FB8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23FB8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6024018[] = "__OTR__ast_zoness/D_ZO_6024018";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6024220[] = "__OTR__ast_zoness/D_ZO_6024220";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_24278[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_24278";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60242B8[] = "__OTR__ast_zoness/D_ZO_60242B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoRockDL[] = "__OTR__ast_zoness/aZoRockDL";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_24B70[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_24B70";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6024D60[] = "__OTR__ast_zoness/D_ZO_6024D60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_25560[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_25560";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_255D8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_255D8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6025658[] = "__OTR__ast_zoness/D_ZO_6025658";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6025E60[] = "__OTR__ast_zoness/D_ZO_6025E60";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_25EF8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_25EF8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6025F98[] = "__OTR__ast_zoness/D_ZO_6025F98";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_261A0[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_261A0";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_26348[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_26348";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_264B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_264B8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_264F8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_264F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_265F8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_265F8";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_60266D0[] = "__OTR__ast_zoness/D_ZO_60266D0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_6026714[] = "__OTR__ast_zoness/D_ZO_6026714";
|
||||
|
||||
static const char D_ZO_602AAC0[] = "__OTR__ast_zoness/D_ZO_602AAC0";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_602AC50[] = "__OTR__ast_zoness/D_ZO_602AC50";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_602AE94[] = "__OTR__ast_zoness/D_ZO_602AE94";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoRockHitbox[] = "__OTR__ast_zoness/aZoRockHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoOilRig1Hitbox[] = "__OTR__ast_zoness/aZoOilRig1Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoOilRig2Hitbox[] = "__OTR__ast_zoness/aZoOilRig2Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoOilRig3Hitbox[] = "__OTR__ast_zoness/aZoOilRig3Hitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoIslandHitbox[] = "__OTR__ast_zoness/aZoIslandHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoDodoraHitbox[] = "__OTR__ast_zoness/aZoDodoraHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoTroikaHitbox[] = "__OTR__ast_zoness/aZoTroikaHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoObnemaHitbox[] = "__OTR__ast_zoness/aZoObnemaHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoBarrierHitbox[] = "__OTR__ast_zoness/aZoBarrierHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoBarrierHitbox2[] = "__OTR__ast_zoness/aZoBarrierHitbox2";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoSarumarineHitbox[] = "__OTR__ast_zoness/aZoSarumarineHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoSarumarinePeriscopeHitbox[] = "__OTR__ast_zoness/aZoSarumarinePeriscopeHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoTankerHitbox[] = "__OTR__ast_zoness/aZoTankerHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoContainerHitbox[] = "__OTR__ast_zoness/aZoContainerHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoRadarBuoyHitbox[] = "__OTR__ast_zoness/aZoRadarBuoyHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoSupplyCraneHitbox[] = "__OTR__ast_zoness/aZoSupplyCraneHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoBirdHitbox[] = "__OTR__ast_zoness/aZoBirdHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char aZoSearchLightHitbox[] = "__OTR__ast_zoness/aZoSearchLightHitbox";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_602C2CC[] = "__OTR__ast_zoness/D_ZO_602C2CC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_602CACC[] = "__OTR__ast_zoness/D_ZO_602CACC";
|
||||
|
||||
static const ALIGN_ASSET(2) char D_ZO_602CB80[] = "__OTR__ast_zoness/D_ZO_602CB80";
|
||||
|
176
include/assets/rcp_setup.h
Normal file
176
include/assets/rcp_setup.h
Normal file
@ -0,0 +1,176 @@
|
||||
#pragma once
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_0[] = "__OTR__rcp_setup/rcp_setup_dls_0";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_1[] = "__OTR__rcp_setup/rcp_setup_dls_1";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_2[] = "__OTR__rcp_setup/rcp_setup_dls_2";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_3[] = "__OTR__rcp_setup/rcp_setup_dls_3";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_4[] = "__OTR__rcp_setup/rcp_setup_dls_4";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_5[] = "__OTR__rcp_setup/rcp_setup_dls_5";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_6[] = "__OTR__rcp_setup/rcp_setup_dls_6";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_7[] = "__OTR__rcp_setup/rcp_setup_dls_7";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_8[] = "__OTR__rcp_setup/rcp_setup_dls_8";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_9[] = "__OTR__rcp_setup/rcp_setup_dls_9";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_10[] = "__OTR__rcp_setup/rcp_setup_dls_10";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_11[] = "__OTR__rcp_setup/rcp_setup_dls_11";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_12[] = "__OTR__rcp_setup/rcp_setup_dls_12";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_13[] = "__OTR__rcp_setup/rcp_setup_dls_13";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_14[] = "__OTR__rcp_setup/rcp_setup_dls_14";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_15[] = "__OTR__rcp_setup/rcp_setup_dls_15";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_16[] = "__OTR__rcp_setup/rcp_setup_dls_16";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_17[] = "__OTR__rcp_setup/rcp_setup_dls_17";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_18[] = "__OTR__rcp_setup/rcp_setup_dls_18";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_19[] = "__OTR__rcp_setup/rcp_setup_dls_19";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_20[] = "__OTR__rcp_setup/rcp_setup_dls_20";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_21[] = "__OTR__rcp_setup/rcp_setup_dls_21";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_22[] = "__OTR__rcp_setup/rcp_setup_dls_22";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_23[] = "__OTR__rcp_setup/rcp_setup_dls_23";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_24[] = "__OTR__rcp_setup/rcp_setup_dls_24";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_25[] = "__OTR__rcp_setup/rcp_setup_dls_25";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_26[] = "__OTR__rcp_setup/rcp_setup_dls_26";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_27[] = "__OTR__rcp_setup/rcp_setup_dls_27";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_28[] = "__OTR__rcp_setup/rcp_setup_dls_28";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_29[] = "__OTR__rcp_setup/rcp_setup_dls_29";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_30[] = "__OTR__rcp_setup/rcp_setup_dls_30";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_31[] = "__OTR__rcp_setup/rcp_setup_dls_31";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_32[] = "__OTR__rcp_setup/rcp_setup_dls_32";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_33[] = "__OTR__rcp_setup/rcp_setup_dls_33";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_34[] = "__OTR__rcp_setup/rcp_setup_dls_34";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_35[] = "__OTR__rcp_setup/rcp_setup_dls_35";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_36[] = "__OTR__rcp_setup/rcp_setup_dls_36";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_37[] = "__OTR__rcp_setup/rcp_setup_dls_37";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_38[] = "__OTR__rcp_setup/rcp_setup_dls_38";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_39[] = "__OTR__rcp_setup/rcp_setup_dls_39";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_40[] = "__OTR__rcp_setup/rcp_setup_dls_40";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_41[] = "__OTR__rcp_setup/rcp_setup_dls_41";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_42[] = "__OTR__rcp_setup/rcp_setup_dls_42";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_43[] = "__OTR__rcp_setup/rcp_setup_dls_43";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_44[] = "__OTR__rcp_setup/rcp_setup_dls_44";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_45[] = "__OTR__rcp_setup/rcp_setup_dls_45";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_46[] = "__OTR__rcp_setup/rcp_setup_dls_46";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_47[] = "__OTR__rcp_setup/rcp_setup_dls_47";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_48[] = "__OTR__rcp_setup/rcp_setup_dls_48";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_49[] = "__OTR__rcp_setup/rcp_setup_dls_49";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_50[] = "__OTR__rcp_setup/rcp_setup_dls_50";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_51[] = "__OTR__rcp_setup/rcp_setup_dls_51";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_52[] = "__OTR__rcp_setup/rcp_setup_dls_52";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_53[] = "__OTR__rcp_setup/rcp_setup_dls_53";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_54[] = "__OTR__rcp_setup/rcp_setup_dls_54";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_55[] = "__OTR__rcp_setup/rcp_setup_dls_55";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_56[] = "__OTR__rcp_setup/rcp_setup_dls_56";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_57[] = "__OTR__rcp_setup/rcp_setup_dls_57";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_58[] = "__OTR__rcp_setup/rcp_setup_dls_58";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_59[] = "__OTR__rcp_setup/rcp_setup_dls_59";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_60[] = "__OTR__rcp_setup/rcp_setup_dls_60";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_61[] = "__OTR__rcp_setup/rcp_setup_dls_61";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_62[] = "__OTR__rcp_setup/rcp_setup_dls_62";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_63[] = "__OTR__rcp_setup/rcp_setup_dls_63";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_64[] = "__OTR__rcp_setup/rcp_setup_dls_64";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_65[] = "__OTR__rcp_setup/rcp_setup_dls_65";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_66[] = "__OTR__rcp_setup/rcp_setup_dls_66";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_67[] = "__OTR__rcp_setup/rcp_setup_dls_67";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_68[] = "__OTR__rcp_setup/rcp_setup_dls_68";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_69[] = "__OTR__rcp_setup/rcp_setup_dls_69";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_70[] = "__OTR__rcp_setup/rcp_setup_dls_70";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_71[] = "__OTR__rcp_setup/rcp_setup_dls_71";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_72[] = "__OTR__rcp_setup/rcp_setup_dls_72";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_73[] = "__OTR__rcp_setup/rcp_setup_dls_73";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_74[] = "__OTR__rcp_setup/rcp_setup_dls_74";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_75[] = "__OTR__rcp_setup/rcp_setup_dls_75";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_76[] = "__OTR__rcp_setup/rcp_setup_dls_76";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_77[] = "__OTR__rcp_setup/rcp_setup_dls_77";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_78[] = "__OTR__rcp_setup/rcp_setup_dls_78";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_79[] = "__OTR__rcp_setup/rcp_setup_dls_79";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_80[] = "__OTR__rcp_setup/rcp_setup_dls_80";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_81[] = "__OTR__rcp_setup/rcp_setup_dls_81";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_82[] = "__OTR__rcp_setup/rcp_setup_dls_82";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_83[] = "__OTR__rcp_setup/rcp_setup_dls_83";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_84[] = "__OTR__rcp_setup/rcp_setup_dls_84";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_85[] = "__OTR__rcp_setup/rcp_setup_dls_85";
|
||||
|
||||
static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_86[] = "__OTR__rcp_setup/rcp_setup_dls_86";
|
||||
|
@ -98,7 +98,7 @@ extern s32 gRadioMsgCharIndex;
|
||||
extern UNK_TYPE F_801782E0;
|
||||
extern s32 gRadioMsgId;
|
||||
extern UNK_TYPE F_801782F0;
|
||||
extern s32 gMsgCharIsPrinting;
|
||||
extern bool gMsgCharIsPrinting;
|
||||
extern bool gHideRadio;
|
||||
extern u16* gRadioMsg;
|
||||
extern ObjectInit* gLevelObjects;
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 4a4a54c842637f47f913c89484572ef5284e6ff3
|
||||
Subproject commit 1a8f6c0db9a56017611eba57298d9c2eddc18f88
|
@ -229,6 +229,12 @@ void Background_DrawStarfield(void) {
|
||||
FrameInterpolation_ShouldInterpolateFrame(false);
|
||||
}
|
||||
|
||||
float originalWidth = currentScreenWidth / 3;
|
||||
float originalAspect = originalWidth / (currentScreenHeight / 3);
|
||||
float renderMaskWidth = originalWidth * (OTRGetAspectRatio() / originalAspect);
|
||||
float marginX = (currentScreenWidth - renderMaskWidth) / 2;
|
||||
float renderMaskHeight = currentScreenHeight / 3;
|
||||
|
||||
for (i = 0; i < starCount; i++, yStar++, xStar++, color++) {
|
||||
// Adjust star positions with field offsets
|
||||
bx = *xStar + xField;
|
||||
@ -259,20 +265,11 @@ void Background_DrawStarfield(void) {
|
||||
vy = (-zSin * bx) + (zCos * by) + currentScreenHeight / 2.0f;
|
||||
|
||||
// Check if the star is within the visible screen area with margin
|
||||
if ((vx >= STAR_MARGIN) && (vx < currentScreenWidth - STAR_MARGIN) && (vy >= STAR_MARGIN) &&
|
||||
(vy < currentScreenHeight - STAR_MARGIN)) {
|
||||
if (vx >= (marginX - STAR_MARGIN) && vx <= (marginX + renderMaskWidth + STAR_MARGIN) &&
|
||||
vy >= (renderMaskHeight - STAR_MARGIN) && vy <= ((renderMaskHeight * 2) + STAR_MARGIN)) {
|
||||
|
||||
// @port: Some garbage stars can be seen while scrolling faster, because of this
|
||||
// we should skip interpolation when the stars warp from left to right.
|
||||
u8 skipStarsInterpolation = (fabsf(vx - gStarPrevX[i]) > starfieldWidth / 2.0f) ||
|
||||
(fabsf(vy - gStarPrevY[i]) > starfieldHeight / 2.0f);
|
||||
|
||||
if (skipStarsInterpolation) {
|
||||
FrameInterpolation_ShouldInterpolateFrame(false);
|
||||
} else {
|
||||
FrameInterpolation_RecordOpenChild("Starfield", i);
|
||||
FrameInterpolation_RecordMarker(__FILE__, __LINE__);
|
||||
}
|
||||
|
||||
// Translate to (vx, vy) in ortho coordinates
|
||||
Matrix_Push(&gGfxMatrix);
|
||||
@ -295,12 +292,7 @@ void Background_DrawStarfield(void) {
|
||||
gSPDisplayList(gMasterDisp++, starDL);
|
||||
Matrix_Pop(&gGfxMatrix);
|
||||
|
||||
if (skipStarsInterpolation) {
|
||||
FrameInterpolation_ShouldInterpolateFrame(true);
|
||||
} else {
|
||||
// Pop the transform id
|
||||
FrameInterpolation_RecordCloseChild();
|
||||
}
|
||||
|
||||
gStarPrevX[i] = vx;
|
||||
gStarPrevY[i] = vy;
|
||||
|
@ -2105,7 +2105,7 @@ void Display_Update(void) {
|
||||
if (CVarGetInteger("gDebugJumpToAllRange", 0) == 1) {
|
||||
Player* pl2 = &gPlayer[0];
|
||||
|
||||
if (gControllerPress[0].button & L_TRIG) {
|
||||
if ((gLevelMode != LEVELMODE_ALL_RANGE) && (gControllerPress[0].button & L_TRIG)) {
|
||||
pl2->state_1C8 = PLAYERSTATE_1C8_START_360;
|
||||
}
|
||||
}
|
||||
|
@ -613,7 +613,7 @@ void Radio_Draw(void) {
|
||||
if (!(fakeTemp)) {
|
||||
ret = Audio_GetCurrentVoiceStatus();
|
||||
|
||||
if (gRadioMsg[gRadioMsgCharIndex + 1] != MSGCHAR_END) {
|
||||
if (gRadioMsgCharIndex < 60 && gRadioMsg[gRadioMsgCharIndex + 1] != MSGCHAR_END) {
|
||||
if (gRadioMsg[gRadioMsgCharIndex + 1] == MSGCHAR_NXT) {
|
||||
if (ret == 0) {
|
||||
gRadioState = 31;
|
||||
@ -621,6 +621,8 @@ void Radio_Draw(void) {
|
||||
} else {
|
||||
gRadioMsgCharIndex++;
|
||||
}
|
||||
} else if (gRadioMsgCharIndex < 60) {
|
||||
gRadioMsgCharIndex = 60;
|
||||
}
|
||||
|
||||
if (sRadioCheckMouthFlag) {
|
||||
|
@ -303,13 +303,8 @@ void DrawSettingsMenu(){
|
||||
UIWidgets::Tooltip("When Interpolation FPS setting is at least this threshold, add one frame of input lag (e.g. 16.6 ms for 60 FPS) in order to avoid jitter. This setting allows the CPU to work on one frame while GPU works on the previous frame.\nThis setting should be used when your computer is too slow to do CPU + GPU work in time.");
|
||||
}
|
||||
|
||||
UIWidgets::CVarCheckbox("Disable Starfield interpolation", "gDisableStarsInterpolation", {
|
||||
.tooltip = "Disable starfield interpolation to increase performance on slower CPUs"
|
||||
});
|
||||
|
||||
UIWidgets::PaddedSeparator(true, true, 3.0f, 3.0f);
|
||||
|
||||
|
||||
static std::unordered_map<Ship::WindowBackend, const char*> windowBackendNames = {
|
||||
{ Ship::WindowBackend::FAST3D_DXGI_DX11, "DirectX" },
|
||||
{ Ship::WindowBackend::FAST3D_SDL_OPENGL, "OpenGL"},
|
||||
@ -475,13 +470,6 @@ void DrawCheatsMenu() {
|
||||
UIWidgets::CVarCheckbox("Unbreakable Wings", "gUnbreakableWings");
|
||||
UIWidgets::CVarCheckbox("Infinite Bombs", "gInfiniteBombs");
|
||||
UIWidgets::CVarCheckbox("Hyper Laser", "gHyperLaser");
|
||||
|
||||
ImGui::EndMenu();
|
||||
}
|
||||
}
|
||||
|
||||
void DrawHit64Menu() {
|
||||
if (UIWidgets::BeginMenu("Hit+64")) {
|
||||
UIWidgets::CVarCheckbox("Self destruct button", "gHit64SelfDestruct", {
|
||||
.tooltip = "Press Down on the D-PAD to instantly self destruct."
|
||||
});
|
||||
@ -546,6 +534,10 @@ void DrawDebugMenu() {
|
||||
.tooltip = "Press L in the Expert Sound options to play sound effects from the game"
|
||||
});
|
||||
|
||||
UIWidgets::CVarCheckbox("Disable Starfield interpolation", "gDisableStarsInterpolation", {
|
||||
.tooltip = "Disable starfield interpolation to increase performance on slower CPUs"
|
||||
});
|
||||
|
||||
UIWidgets::CVarCheckbox("Spawner Mod", "gSpawnerMod", {
|
||||
.tooltip = "Spawn Scenery, Actors, Bosses, Sprites, Items, Effects and even Event Actors.\n"
|
||||
"\n"
|
||||
@ -639,8 +631,6 @@ void GameMenuBar::DrawElement() {
|
||||
|
||||
ImGui::SetCursorPosY(0.0f);
|
||||
|
||||
DrawHit64Menu();
|
||||
|
||||
ImGui::SetCursorPosY(0.0f);
|
||||
|
||||
DrawDebugMenu();
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit ed4ee26fe6d6ec113efc54d188c5864f44c1e14d
|
||||
Subproject commit 6a40a9435f4db5c5a77c91979841b6e4c6e6065a
|
@ -1 +0,0 @@
|
||||
Subproject commit 57f4129a7a0792c6c0f7e44e8c171c8e01c12a41
|
Loading…
Reference in New Issue
Block a user