1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

LibCards+Games: Move mark_intersecting_stacks_dirty() to CardGame

As part of this, made a const overload for `Card::rect()`. We need the
non-const one too as it's used for modifying the position of a card
that's being dragged. I plan on changing that soon but we'll see.
This commit is contained in:
Sam Atkins 2022-09-28 14:18:44 +01:00 committed by Sam Atkins
parent 12612703f9
commit 5960c0556f
7 changed files with 12 additions and 22 deletions

View file

@ -88,6 +88,7 @@ public:
virtual ~Card() override = default;
Gfx::IntRect& rect() { return m_rect; }
Gfx::IntRect const& rect() const { return m_rect; }
Gfx::IntPoint position() const { return m_rect.location(); }
Gfx::IntPoint const& old_position() const { return m_old_position; }
Rank rank() const { return m_rank; };