diff options
Diffstat (limited to '')
-rw-r--r-- | freecell.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/freecell.c b/freecell.c index b7f6378..652ce3d 100644 --- a/freecell.c +++ b/freecell.c @@ -14,14 +14,15 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <SDL.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <time.h> +#include <SDL.h> +#include <cards.h> + #include "asset.h" -#include "cards.h" #include "layout.h" #include "stack.h" |