feat: add TicTacToe example project

Implement a complete Tic-Tac-Toe game using OECS to demonstrate
ECS patterns, including:
- Command pattern for placing marks
- System groups for logical updates and rendering
- CSV loading for initial board state
- Reactivity logging for observing entity and component changes
This commit is contained in:
2026-07-18 20:43:13 +08:00
parent dddddbdbd6
commit a19861c080
14 changed files with 467 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
Row,Col
0,0
0,1
0,2
1,0
1,1
1,2
2,0
2,1
2,2
1 Row Col
2 0 0
3 0 1
4 0 2
5 1 0
6 1 1
7 1 2
8 2 0
9 2 1
10 2 2