From 5811c8b68bd5a026d2a72f4abc2081e4bdec77da Mon Sep 17 00:00:00 2001 From: Dragos Stefan Cirstian Date: Sat, 6 Jul 2024 12:03:30 +0300 Subject: [PATCH] Upload files to "/" --- .gitattributes | 2 ++ .gitignore | 2 ++ board.tscn | 7 +++++++ circle.tscn | 7 +++++++ cross.tscn | 7 +++++++ 5 files changed, 25 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 board.tscn create mode 100644 circle.tscn create mode 100644 cross.tscn 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")