Starbound/source/game/interfaces/StarPreviewTileTool.hpp
2025-03-21 22:23:30 +11:00

20 lines
311 B
C++

#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