add DrawCustomHighlight to Canvas

This commit is contained in:
scawful
2024-08-20 11:05:49 -04:00
parent dd430ad1b6
commit a288dd8933
2 changed files with 16 additions and 11 deletions

View File

@@ -135,6 +135,7 @@ class Canvas : public SharedRom {
canvas_sz_ = canvas_size;
custom_canvas_size_ = true;
}
void DrawCustomHighlight(float grid_step);
bool IsMouseHovering() const { return is_hovered_; }
void ZoomIn() { global_scale_ += 0.25f; }
void ZoomOut() { global_scale_ -= 0.25f; }