diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4709183 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Godot 4+ specific ignores +.godot/ diff --git a/board.tscn b/board.tscn new file mode 100644 index 0000000..13bd1cb --- /dev/null +++ b/board.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://b0skica3w7850"] + +[ext_resource type="Texture2D" uid="uid://d1yxlf6505bri" path="res://assets/grid.png" id="1_oti8b"] + +[node name="Board" type="Sprite2D"] +visible = false +texture = ExtResource("1_oti8b") diff --git a/circle.tscn b/circle.tscn new file mode 100644 index 0000000..be9dbc3 --- /dev/null +++ b/circle.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://nn6wgmlux55i"] + +[ext_resource type="Texture2D" uid="uid://jgp0gtb35gj6" path="res://assets/circle.png" id="1_k5wpp"] + +[node name="Circle" type="Sprite2D"] +scale = Vector2(1.5, 1.5) +texture = ExtResource("1_k5wpp") diff --git a/cross.tscn b/cross.tscn new file mode 100644 index 0000000..e582d53 --- /dev/null +++ b/cross.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://c7w4rinv7meho"] + +[ext_resource type="Texture2D" uid="uid://dgtpgnq5igkfa" path="res://assets/cross.png" id="1_85rmd"] + +[node name="Cross" type="Sprite2D"] +scale = Vector2(1.5, 1.5) +texture = ExtResource("1_85rmd")