6 lines
94 B
C
6 lines
94 B
C
#include "card.h"
|
|
|
|
void draw_card(Card *c) {
|
|
DrawRectangleV(c->position, card_size, RED);
|
|
}
|