first commit

This commit is contained in:
2026-01-19 17:44:00 -05:00
commit e2b7d6616a
67 changed files with 1608 additions and 0 deletions

63
Gameplay/board.tscn Normal file
View File

@@ -0,0 +1,63 @@
[gd_scene load_steps=4 format=3 uid="uid://jkmo1fb2ohv4"]
[ext_resource type="Texture2D" uid="uid://cbi83mc26qju5" path="res://Art/Tic-tac-toe.png" id="1_iqk8r"]
[ext_resource type="Script" uid="uid://decakbqo4jfdi" path="res://Gameplay/Board.cs" id="2_ucn0m"]
[ext_resource type="PackedScene" uid="uid://0vj01cjcpibt" path="res://Gameplay/cell.tscn" id="3_s74v7"]
[node name="Board" type="Sprite2D"]
texture = ExtResource("1_iqk8r")
script = ExtResource("2_ucn0m")
[node name="Cell1" parent="." instance=ExtResource("3_s74v7")]
offset_left = -300.0
offset_top = -301.0
offset_right = -100.0
offset_bottom = -101.0
[node name="Cell2" parent="." instance=ExtResource("3_s74v7")]
offset_left = -100.0
offset_top = -300.0
offset_right = 100.0
offset_bottom = -100.0
[node name="Cell3" parent="." instance=ExtResource("3_s74v7")]
offset_left = 100.0
offset_top = -300.0
offset_right = 300.0
offset_bottom = -100.0
[node name="Cell4" parent="." instance=ExtResource("3_s74v7")]
offset_left = -300.0
offset_top = -100.0
offset_right = -100.0
offset_bottom = 100.0
[node name="Cell5" parent="." instance=ExtResource("3_s74v7")]
offset_left = -100.0
offset_top = -100.0
offset_right = 100.0
offset_bottom = 100.0
[node name="Cell6" parent="." instance=ExtResource("3_s74v7")]
offset_left = 100.0
offset_top = -100.0
offset_right = 300.0
offset_bottom = 100.0
[node name="Cell7" parent="." instance=ExtResource("3_s74v7")]
offset_left = -300.0
offset_top = 100.0
offset_right = -100.0
offset_bottom = 300.0
[node name="Cell8" parent="." instance=ExtResource("3_s74v7")]
offset_left = -100.0
offset_top = 100.0
offset_right = 100.0
offset_bottom = 300.0
[node name="Cell9" parent="." instance=ExtResource("3_s74v7")]
offset_left = 100.0
offset_top = 100.0
offset_right = 300.0
offset_bottom = 300.0