diff options
author | June McEnroe <june@causal.agency> | 2019-03-15 00:34:50 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-03-15 00:34:50 -0400 |
commit | 89a5cddd3f841a8f57d10775e60b75327954b481 (patch) | |
tree | 65caab1a32df12fd61e7f409bad7dbea1f81abcf | |
parent | Handle error from SDL_SaveBMP (diff) | |
download | wep-89a5cddd3f841a8f57d10775e60b75327954b481.tar.gz wep-89a5cddd3f841a8f57d10775e60b75327954b481.zip |
Add Cards_{Width,Height} constants
-rw-r--r-- | cards.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cards.h b/cards.h index 23a70fb..0308cdf 100644 --- a/cards.h +++ b/cards.h @@ -20,6 +20,11 @@ #include <SDL_rwops.h> #include <SDL_surface.h> +enum { + Cards_Width = 71, + Cards_Height = 96, +}; + enum Cards_Card { Cards_Club, Cards_Diamond = 13, |