python callbacks, working on grid

This commit is contained in:
John McCardle 2023-03-03 22:16:47 -05:00
commit e295bfb742
6 changed files with 260 additions and 47 deletions

View file

@ -35,4 +35,8 @@ public:
void render(sf::RenderWindow&); // draw to screen
GridPoint& at(int, int);
void screenToGrid(int, int, int&, int&);
GridPoint* atScreenPixel(int, int, int*, int*);
};