From 9b1b68aa50bdaf2ef85d494731254a8318bcb780 Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 28 Mar 2019 08:53:30 +0000 Subject: Fixed bug where the draw pile was being inverted when reset. --- pile.h | 1 + 1 file changed, 1 insertion(+) (limited to 'pile.h') diff --git a/pile.h b/pile.h index c3cfc16..d63b32e 100644 --- a/pile.h +++ b/pile.h @@ -41,6 +41,7 @@ Card PopPile(Pile *pile); Card TopOfPile(Pile *pile); void MoveTopCard(Pile *from, Pile *to); void SwapPile(Pile *a, Pile *b); +void MovePile(Pile *from, Pile *to); void FreePile(Pile *p); #endif -- cgit v1.2.3