draw.hpp
1 2 3 4 5 6 7 8 | #pragma once #include <planet/map/hex.hpp> #include <planet/sdl/renderer.hpp> namespace planet::sdl { |
Draw a hexagon at a specific location in the current colour
12 13 14 15 | void draw_hex(renderer &, ui::panel &, hexmap::coordinates, float radius); } |