diff options
| author | notyourav <65437533+notyourav@users.noreply.github.com> | 2022-03-23 19:34:52 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-23 19:34:52 -0700 |
| commit | 65d6fbb5f99b8a89c23e467d12ec3d06b41126cd (patch) | |
| tree | 1bbd3e5c3893ee4ecf289330e02b1afe965815c9 /tools/src/asset_processor/main.cpp | |
| parent | fc3dc169519bc30da79d89ac9afaff7ca71b8eed (diff) | |
| parent | ce0ffa2a6ba13ea49ebee5b374cebc067952b134 (diff) | |
Merge pull request #456 from Henny022p/transitions
Transition Data
Diffstat (limited to 'tools/src/asset_processor/main.cpp')
| -rw-r--r-- | tools/src/asset_processor/main.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/src/asset_processor/main.cpp b/tools/src/asset_processor/main.cpp index 1e6df2a0..2e6da1d1 100644 --- a/tools/src/asset_processor/main.cpp +++ b/tools/src/asset_processor/main.cpp @@ -1,7 +1,6 @@ #include "main.h" #include "assets/aif.h" #include "assets/animation.h" -#include "assets/exitlist.h" #include "assets/frameobjlists.h" #include "assets/gfx.h" #include "assets/midi.h" @@ -267,8 +266,6 @@ std::unique_ptr<BaseAsset> getAssetHandlerByType(const std::filesystem::path& pa assetHandler = std::make_unique<AnimationAsset>(path, start, size, asset); } else if (type == "sprite_frame") { assetHandler = std::make_unique<SpriteFrameAsset>(path, start, size, asset); - } else if (type == "exit_list") { - assetHandler = std::make_unique<ExitListAsset>(path, start, size, asset); } else if (type == "frame_obj_lists") { assetHandler = std::make_unique<FrameObjListsAsset>(path, start, size, asset); } else if (type == "midi") { |
