Skip to content

My implementation of Tic Tac Toe as a web game. Back-end: C, Python. Front-end: HTML, CSS, JavaScript.

Notifications You must be signed in to change notification settings

shahdelrefai/tic_tac_toe_web_game

Repository files navigation

Tic Tac Toe Web Game

The Tic Tac Toe web game project consists of both front-end components using HTML, CSS, and JavaScript and back-end components using C and Python (Flask).

Communication Flow

  • The front-end (HTML, CSS, JavaScript) handles user interactions and sends game-related requests to the Python server.

  • The Python server (Flask) receives these requests, and forwards them to the C server via the established TCP connection.

  • The C server processes the game inputs, updates the game state, and sends game updates back to the Python server.

  • The Python server (Flask) receives these requests, and forwards them to the C server via the established TCP connection.

Documentation

For more details and snippets from the game please visit the documentation.