Tic-Tac-Toe Simulation (15%)


Assignment

Familiarize yourself with the rules of tic-tac-toe and then implement a simulated tic-tac-toe game in the Godot Engine using GDScript.

Sample Output Transcript

--- Debugging process started ---
Godot Engine v4.0.3.stable.official.5222a99f5 - https://godotengine.org
Vulkan API 1.2.203 - Forward+ - Using Vulkan Device #0: Intel - Intel(R) UHD Graphics 620
 
  |   |   
--+---+--
  |   |   
--+---+--
  |   |   


  |   |   
--+---+--
  |   | X 
--+---+--
  |   |   


  |   |   
--+---+--
  |   | X 
--+---+--
  |   | O 


  |   | X 
--+---+--
  |   | X 
--+---+--
  |   | O 


  |   | X 
--+---+--
  |   | X 
--+---+--
O |   | O

  |   | X 
--+---+--
  | X | X 
--+---+--
O |   | O 



  |   | X 
--+---+--
  | X | X 
--+---+--
O | O | O 


O wins!

Requirements

Grading

Sample Solution