Is it possible to change the mouse pointer icon or do other changes in the control panel with a short python script?
Pseudocode of what I want to achieve:
import os
default_cursor=os.get_system_mouse_cursor
os.set_mouse_cursor('CURSOR_CROSSHAIR')
....
My game
....
os.set_mouse_cursor(default_cursor)
terminate program
I just imported os for the sake of the example!