Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 806 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 806 Bytes

Trivia Blitz

  • In this project, we are using Pygame for game UI where clients play at.

Setup Pygame

  • Install Python3 in order to run Pygame: https://www.python.org/downloads/

  • Install Pygame in terminal(command prompt in PC), python3 -m pip install -U pygame --user

  • To see if it is installed, run one of the included examples: python3 -m pygame.examples.aliens

  • Visual Studio or Spyder are recommanded running environments.

  • More detail for help, see https://www.pygame.org/wiki/GettingStarted

Run the game

  • Setup ad hoc network and change address in client and server accordingly
  • To start server, at server module, run python3 main.py(python main.py on Windows)
  • To start game, at client module, run phthon3 lobby.py (phthon lobby.py on Windows)