What is the easiest way to create a clickable grid for a game in C++?
- by mangoman13
I haven't used C++ in a while, so I decided to take on a small project to become familiar with it again. I am trying to make a chinese checkers game, but I have no experience with GUI design in C++. Is there a real simple way to just make grid (i.e. bitmap hexagons or something) that when clicked on, will give me the index number of the one I've clicked on?
If someone has any examples of how to do this, even with just a 2D grid of squares, that would be helpful.
Any help is appreciated, thanks!