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

17 lines
255 B
C++

#pragma once
#include "StarDrawable.hpp"
namespace Star {
STAR_CLASS(Player);
STAR_CLASS(PreviewableItem);
class PreviewableItem {
public:
virtual ~PreviewableItem() {}
virtual List<Drawable> preview(PlayerPtr const& viewer = {}) const = 0;
};
}