Initializes the client-side bounding box demo.
()
| 384 | |
| 385 | |
| 386 | def main(): |
| 387 | """ |
| 388 | Initializes the client-side bounding box demo. |
| 389 | """ |
| 390 | |
| 391 | try: |
| 392 | client = BasicSynchronousClient() |
| 393 | client.game_loop() |
| 394 | finally: |
| 395 | print('EXIT') |
| 396 | |
| 397 | |
| 398 | if __name__ == '__main__': |
no test coverage detected