()
| 891 | |
| 892 | |
| 893 | def main(): |
| 894 | window = Window(width=800, height=600, caption='Pyglet', resizable=True) |
| 895 | # Hide the mouse cursor and prevent the mouse from leaving the window. |
| 896 | window.set_exclusive_mouse(True) |
| 897 | setup() |
| 898 | pyglet.app.run() |
| 899 | |
| 900 | |
| 901 | if __name__ == '__main__': |
no test coverage detected