Original Post
I wrote the game engine for a card game using C++. It's currently running on Windows but I would like it to be cross-platform; it's not web-based. On my previous card game, I used SDL for the GUI since it was just a matter of clicking a card to play it. In this game, the player needs to be able to rearrange the cards in his hand. I'm hoping to find something like an open-source card game where I can borrow the code for dealing with the cards on the screen, or maybe an API that's specific for card games. I'm basically trying to avoid coding it in SDL myself. Does anyone have any suggestions? Thanks in advance.