From e10a2325c42a2e6451cb899191fe883148842082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Fri, 4 Jun 2021 12:32:41 +0200 Subject: [PATCH] Add godot config --- symlinks/config/godot/.gitignore | 2 ++ symlinks/config/godot/script_templates/empty.gd | 2 ++ symlinks/config/godot/script_templates/no_comments.gd | 5 +++++ 3 files changed, 9 insertions(+) create mode 100644 symlinks/config/godot/.gitignore create mode 100644 symlinks/config/godot/script_templates/empty.gd create mode 100644 symlinks/config/godot/script_templates/no_comments.gd diff --git a/symlinks/config/godot/.gitignore b/symlinks/config/godot/.gitignore new file mode 100644 index 0000000..efd6149 --- /dev/null +++ b/symlinks/config/godot/.gitignore @@ -0,0 +1,2 @@ +editor_settings-3.tres +projects/* diff --git a/symlinks/config/godot/script_templates/empty.gd b/symlinks/config/godot/script_templates/empty.gd new file mode 100644 index 0000000..c3c8a18 --- /dev/null +++ b/symlinks/config/godot/script_templates/empty.gd @@ -0,0 +1,2 @@ +extends %BASE% + diff --git a/symlinks/config/godot/script_templates/no_comments.gd b/symlinks/config/godot/script_templates/no_comments.gd new file mode 100644 index 0000000..8f35b0b --- /dev/null +++ b/symlinks/config/godot/script_templates/no_comments.gd @@ -0,0 +1,5 @@ +extends %BASE% + + +func _ready()%VOID_RETURN%: +%TS%pass