From 0ba16360beb93df4052c04f232058eec4a2e3352 Mon Sep 17 00:00:00 2001 From: Clifton Palmer Date: Fri, 29 Nov 2024 14:59:04 +0200 Subject: [PATCH] Initial commit --- .gitattributes | 2 ++ .gitignore | 7 +++++++ icon.svg | 1 + project.godot | 15 +++++++++++++++ 4 files changed, 25 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 icon.svg create mode 100644 project.godot 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..0f3138b --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +# Godot 4+ specific ignores +.godot/ +/android/ +*.import + +# misc +.DS_Store diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..9d8b7fa --- /dev/null +++ b/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..5e79132 --- /dev/null +++ b/project.godot @@ -0,0 +1,15 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="test" +config/features=PackedStringArray("4.3", "Forward Plus") +config/icon="res://icon.svg" -- 2.47.2