Better indication of selected card

This commit is contained in:
Bill Rossi 2025-02-25 05:35:15 -05:00
parent b5721105b1
commit ec0459e35b

7
card.c
View File

@ -14,6 +14,10 @@ void draw_card(Card *c, Texture2D *cards_texture, int index) {
Color color = index == 1 ? BLACK : BRICKRED;
if (c->selected) {
DrawRectangleRec((Rectangle) { c->position.x - 6, c->position.y - 6, card_size.x + 12, card_size.y + 12 }, BLUE);
}
if (c->visible) {
DrawTexturePro(
*cards_texture,
@ -27,9 +31,6 @@ void draw_card(Card *c, Texture2D *cards_texture, int index) {
DrawRectangleRec((Rectangle) { c->position.x, c->position.y, card_size.x, card_size.y }, color);
}
if (c->selected) {
DrawCircle(c->position.x + 10, c->position.y + 10, 10, BLUE);
}
}
bool point_within_card(Card *c, Vector2 point) {