X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/70d26c3f4ffb24d50457d405c9595fd23f9e5b7c..85ac8ca017a0409e9762ed305ccc1d32a7c28fa7:/demos/forty/pile.h diff --git a/demos/forty/pile.h b/demos/forty/pile.h index 49eb8c9b54..372fb9d1ce 100644 --- a/demos/forty/pile.h +++ b/demos/forty/pile.h @@ -66,9 +66,10 @@ public: virtual Card* RemoveTopCard(wxDC& pDC, int xOffset = 0, int yOffset = 0); // Functions to add a card to the top of a pile - virtual bool AcceptCard(Card*) { return FALSE; } + virtual bool AcceptCard(Card*) { return false; } virtual void AddCard(Card* card); // Add card to top of pile virtual void AddCard(wxDC& pDC, Card* card); // Add card + redraw it + void SetPos(int x,int y) {m_x = x;m_y = y;}; protected: int m_x, m_y; // Position of the pile on the screen