osb/source/game/interfaces/StarPreviewTileTool.hpp

21 lines
316 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> previewTiles(bool shifting) const = 0;
2023-06-20 04:33:09 +00:00
};
}
#endif