# Tic Tac Toe Classic two-player game built with UI widgets. ```{raw} html ▶ Run in browser ``` **Tags:** `game` `ui` `button` `grid` `signals` `game-state` A clean Tic Tac Toe entirely composed of SimVX UI widgets (`Button`, `Label`, `GridContainer`, `VBoxContainer`) with no custom draw code. Button signals wire directly to game logic; cells re-render via runtime property changes. This `main.py` is a thin entry that imports the game from the sibling `game.py` so the existing `menu.py`, `demo.py`, and `web.py` modules continue to resolve `from game import …`. ## Source ```{literalinclude} ../../examples/demos/tictactoe/main.py :language: python :linenos: ```