From e57c33fb44e43880aee8d9d9721998b52ea0cca8 Mon Sep 17 00:00:00 2001 From: jonathan Date: Tue, 20 Jan 2026 22:36:55 +0100 Subject: [PATCH] Initial commit --- .editorconfig | 4 ++++ .gitattributes | 2 ++ .gitignore | 3 +++ project.godot | 18 ++++++++++++++++++ 4 files changed, 27 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 project.godot diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f28239b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,4 @@ +root = true + +[*] +charset = utf-8 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..0af181c --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Godot 4+ specific ignores +.godot/ +/android/ diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..2f751fe --- /dev/null +++ b/project.godot @@ -0,0 +1,18 @@ +; 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="Undertaker Simulator" +config/features=PackedStringArray("4.5", "Forward Plus") + +[dotnet] + +project/assembly_name="Undertaker Simulator"