16 lines
243 B
C++
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;
|
|
};
|
|
|
|
}
|