diff --git a/school_bell/README.md b/school_bell/README.md new file mode 100644 index 0000000..231618e --- /dev/null +++ b/school_bell/README.md @@ -0,0 +1,3 @@ +# school_bell + +School Bell software (designed in Godot 4) \ No newline at end of file diff --git a/school_bell/SchoolBell/.gitattributes b/school_bell/SchoolBell/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/school_bell/SchoolBell/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/school_bell/SchoolBell/.gitignore b/school_bell/SchoolBell/.gitignore new file mode 100644 index 0000000..4709183 --- /dev/null +++ b/school_bell/SchoolBell/.gitignore @@ -0,0 +1,2 @@ +# Godot 4+ specific ignores +.godot/ diff --git a/school_bell/SchoolBell/icon.svg b/school_bell/SchoolBell/icon.svg new file mode 100644 index 0000000..b370ceb --- /dev/null +++ b/school_bell/SchoolBell/icon.svg @@ -0,0 +1 @@ + diff --git a/school_bell/SchoolBell/main_screen.tscn b/school_bell/SchoolBell/main_screen.tscn new file mode 100644 index 0000000..0b8658c --- /dev/null +++ b/school_bell/SchoolBell/main_screen.tscn @@ -0,0 +1,3 @@ +[gd_scene format=3 uid="uid://dsigtmuaoiggu"] + +[node name="Node2D" type="Node2D"] diff --git a/school_bell/SchoolBell/project.godot b/school_bell/SchoolBell/project.godot new file mode 100644 index 0000000..326d816 --- /dev/null +++ b/school_bell/SchoolBell/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="SchoolBell" +config/features=PackedStringArray("4.1", "Forward Plus") +config/icon="res://icon.svg" diff --git a/school_bell/makefile b/school_bell/makefile new file mode 100644 index 0000000..c10e7c8 --- /dev/null +++ b/school_bell/makefile @@ -0,0 +1,4 @@ +git: + git add -A + git commit -m "$m" + git push