osb/source/game/interfaces/StarNonRotatedDrawablesItem.hpp
2024-02-25 15:46:47 +01:00

16 lines
243 B
C++

#pragma once
#include "StarDrawable.hpp"
namespace Star {
STAR_CLASS(NonRotatedDrawablesItem);
class NonRotatedDrawablesItem {
public:
virtual ~NonRotatedDrawablesItem() {}
virtual List<Drawable> nonRotatedDrawables() const = 0;
};
}