diff options
-rw-r--r-- | .gitignore | 15 | ||||
-rw-r--r-- | project.godot | 13 |
2 files changed, 28 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0035ad6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Godot 4+ specific ignores +.godot/ + +# Godot-specific ignores +.import/ +export.cfg +export_presets.cfg + +# Imported translations (automatically generated from CSV files) +*.translation + +# Mono-specific ignores +.mono/ +data_*/ +mono_crash.*.json
\ No newline at end of file diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..68ee9cf --- /dev/null +++ b/project.godot @@ -0,0 +1,13 @@ +; 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/features=PackedStringArray("4.2") |