osb/source/game/interfaces/StarPreviewTileTool.hpp

21 lines
311 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#ifndef STAR_PREVIEW_TILE_TOOL_HPP
#define STAR_PREVIEW_TILE_TOOL_HPP
#include "StarList.hpp"
STAR_STRUCT(PreviewTile);
STAR_CLASS(PreviewTileTool);
namespace Star {
class PreviewTileTool {
public:
virtual ~PreviewTileTool() {}
virtual List<PreviewTile> preview(bool shifting) const = 0;
};
}
#endif