Skip to content

Commit

Permalink
Remove TileSheet from get_asset_type().
Browse files Browse the repository at this point in the history
  • Loading branch information
karnkaul committed Jan 23, 2024
1 parent c239188 commit 56e86ce
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/include/bave/asset_type.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace bave {
struct AnimTimeline;
struct TileSheet;
class Texture9Slice;
class TextureAtlas;

Expand All @@ -17,8 +16,6 @@ template <typename Type>
constexpr auto get_asset_type() -> std::string_view {
if constexpr (std::same_as<Type, AnimTimeline>) {
return "AnimTimeline";
} else if constexpr (std::same_as<Type, TileSheet>) {
return "TileSheet";
} else if constexpr (std::same_as<Type, Texture9Slice>) {
return "Texture9Slice";
} else if constexpr (std::same_as<Type, TextureAtlas>) {
Expand Down

0 comments on commit 56e86ce

Please sign in to comment.