using git now lol

This commit is contained in:
2026-01-21 13:51:24 -06:00
parent 3117428afe
commit f3c0aafe2f
20 changed files with 529 additions and 0 deletions

22
include/deck.h Normal file
View File

@@ -0,0 +1,22 @@
//Troy Rosin
#ifndef __deck_h__
#define __deck_h__
#include <SDL2/SDL.h>
#define MAX_HANDSIZE 8
#define CARD_SIZE (128 * 2)
#define CARD_W (96 * 2)
typedef struct hand
{
int handsize;
SDL_Texture *cards[MAX_HANDSIZE];
SDL_Rect card_rects[MAX_HANDSIZE];
} HAND;
#endif