From 2505a425e09c65d2430e8504d33e62db7264fba6 Mon Sep 17 00:00:00 2001 From: GyGerg Date: Sun, 23 Oct 2022 23:44:02 +0200 Subject: [PATCH] First placeholder commit --- .gitattributes | 2 ++ .gitignore | 3 +++ SZTE-Thesis-RTS-2022.csproj | 7 +++++++ SZTE-Thesis-RTS-2022.sln | 19 +++++++++++++++++++ ScriptPlaceholder.cs | 6 ++++++ icon.svg | 1 + icon.svg.import | 37 +++++++++++++++++++++++++++++++++++++ project.godot | 19 +++++++++++++++++++ 8 files changed, 94 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 SZTE-Thesis-RTS-2022.csproj create mode 100644 SZTE-Thesis-RTS-2022.sln create mode 100644 ScriptPlaceholder.cs create mode 100644 icon.svg create mode 100644 icon.svg.import 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..1ab95fc --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Godot 4+ specific ignores +.godot/ +.import/ \ No newline at end of file diff --git a/SZTE-Thesis-RTS-2022.csproj b/SZTE-Thesis-RTS-2022.csproj new file mode 100644 index 0000000..6f28b75 --- /dev/null +++ b/SZTE-Thesis-RTS-2022.csproj @@ -0,0 +1,7 @@ + + + net6.0 + true + SZTEThesisRTS2022 + + \ No newline at end of file diff --git a/SZTE-Thesis-RTS-2022.sln b/SZTE-Thesis-RTS-2022.sln new file mode 100644 index 0000000..2e9f836 --- /dev/null +++ b/SZTE-Thesis-RTS-2022.sln @@ -0,0 +1,19 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SZTE-Thesis-RTS-2022", "SZTE-Thesis-RTS-2022.csproj", "{BEFA7C1E-868F-472B-B762-8377B1E1A9FC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + ExportDebug|Any CPU = ExportDebug|Any CPU + ExportRelease|Any CPU = ExportRelease|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BEFA7C1E-868F-472B-B762-8377B1E1A9FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BEFA7C1E-868F-472B-B762-8377B1E1A9FC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BEFA7C1E-868F-472B-B762-8377B1E1A9FC}.ExportDebug|Any CPU.ActiveCfg = ExportDebug|Any CPU + {BEFA7C1E-868F-472B-B762-8377B1E1A9FC}.ExportDebug|Any CPU.Build.0 = ExportDebug|Any CPU + {BEFA7C1E-868F-472B-B762-8377B1E1A9FC}.ExportRelease|Any CPU.ActiveCfg = ExportRelease|Any CPU + {BEFA7C1E-868F-472B-B762-8377B1E1A9FC}.ExportRelease|Any CPU.Build.0 = ExportRelease|Any CPU + EndGlobalSection +EndGlobal diff --git a/ScriptPlaceholder.cs b/ScriptPlaceholder.cs new file mode 100644 index 0000000..a1723d7 --- /dev/null +++ b/ScriptPlaceholder.cs @@ -0,0 +1,6 @@ +using Godot; +using System; + +public partial class ScriptPlaceholder : Node +{ +} diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..adc26df --- /dev/null +++ b/icon.svg @@ -0,0 +1 @@ + diff --git a/icon.svg.import b/icon.svg.import new file mode 100644 index 0000000..be3916c --- /dev/null +++ b/icon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dytynfowk56oh" +path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.svg" +dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..ed9f0b3 --- /dev/null +++ b/project.godot @@ -0,0 +1,19 @@ +; 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="SZTE-Thesis-RTS-2022" +config/features=PackedStringArray("4.0", "Forward Plus") +config/icon="res://icon.svg" + +[dotnet] + +project/assembly_name="SZTE-Thesis-RTS-2022"