#pragma once #include "src/global-coords.hpp" #include #include namespace floormat { template struct clickable final { Atlas& atlas; T& item; Math::Range2D src, dest; BitArrayView bitmask; float depth = 0; chunk_coords chunk; local_coords pos; bool mirrored = false; }; } // namespace floormat