osb/source/game/interfaces/StarNonRotatedDrawablesItem.hpp

19 lines
326 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#ifndef STAR_NON_ROTATED_DRAWABLES_ITEM_HPP
#define STAR_NON_ROTATED_DRAWABLES_ITEM_HPP
#include "StarDrawable.hpp"
namespace Star {
STAR_CLASS(NonRotatedDrawablesItem);
class NonRotatedDrawablesItem {
public:
virtual ~NonRotatedDrawablesItem() {}
virtual List<Drawable> nonRotatedDrawables() const = 0;
};
}
#endif