osb/source/game/interfaces/StarNonRotatedDrawablesItem.hpp

16 lines
243 B
C++
Raw Normal View History

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