blob: 4773e326cabb49e18ae6945e2dc2eb9a8f375179 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "StarDrawable.hpp"
namespace Star {
STAR_CLASS(NonRotatedDrawablesItem);
class NonRotatedDrawablesItem {
public:
virtual ~NonRotatedDrawablesItem() {}
virtual List<Drawable> nonRotatedDrawables() const = 0;
};
}
|