summaryrefslogtreecommitdiffstats
path: root/editor
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-06-11 15:19:07 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-09-25 09:34:35 -0500
commit9f9ee0c813443333a49c797083ff456629c009fb (patch)
tree36dbb6cd89f1b81eaf7940a2d097dc77e55a7f61 /editor
parent0a9d8f04c10870c0f9f7bbd2e0505edc8494e299 (diff)
downloadredot-engine-9f9ee0c813443333a49c797083ff456629c009fb.tar.gz
SCons: Add unobtrusive type hints in SCons files
Diffstat (limited to 'editor')
-rw-r--r--editor/SCsub1
-rw-r--r--editor/debugger/SCsub1
-rw-r--r--editor/debugger/debug_adapter/SCsub1
-rw-r--r--editor/export/SCsub1
-rw-r--r--editor/gui/SCsub1
-rw-r--r--editor/icons/SCsub1
-rw-r--r--editor/import/SCsub1
-rw-r--r--editor/plugins/SCsub1
-rw-r--r--editor/plugins/gizmos/SCsub1
-rw-r--r--editor/plugins/tiles/SCsub1
-rw-r--r--editor/project_manager/SCsub1
-rw-r--r--editor/themes/SCsub1
12 files changed, 12 insertions, 0 deletions
diff --git a/editor/SCsub b/editor/SCsub
index 029048969a..9fcaf61245 100644
--- a/editor/SCsub
+++ b/editor/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/debugger/SCsub b/editor/debugger/SCsub
index 99f1c888f0..e26d09d88b 100644
--- a/editor/debugger/SCsub
+++ b/editor/debugger/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/debugger/debug_adapter/SCsub b/editor/debugger/debug_adapter/SCsub
index 359d04e5df..b3cff5b9dc 100644
--- a/editor/debugger/debug_adapter/SCsub
+++ b/editor/debugger/debug_adapter/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/export/SCsub b/editor/export/SCsub
index 359d04e5df..b3cff5b9dc 100644
--- a/editor/export/SCsub
+++ b/editor/export/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/gui/SCsub b/editor/gui/SCsub
index 359d04e5df..b3cff5b9dc 100644
--- a/editor/gui/SCsub
+++ b/editor/gui/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/icons/SCsub b/editor/icons/SCsub
index 0d9ac43c46..a66ef56699 100644
--- a/editor/icons/SCsub
+++ b/editor/icons/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/import/SCsub b/editor/import/SCsub
index a8c06cc406..3d3b7780ba 100644
--- a/editor/import/SCsub
+++ b/editor/import/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/plugins/SCsub b/editor/plugins/SCsub
index 4b6abf18f9..2d3066c7c9 100644
--- a/editor/plugins/SCsub
+++ b/editor/plugins/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/plugins/gizmos/SCsub b/editor/plugins/gizmos/SCsub
index 359d04e5df..b3cff5b9dc 100644
--- a/editor/plugins/gizmos/SCsub
+++ b/editor/plugins/gizmos/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/plugins/tiles/SCsub b/editor/plugins/tiles/SCsub
index 359d04e5df..b3cff5b9dc 100644
--- a/editor/plugins/tiles/SCsub
+++ b/editor/plugins/tiles/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/project_manager/SCsub b/editor/project_manager/SCsub
index 359d04e5df..b3cff5b9dc 100644
--- a/editor/project_manager/SCsub
+++ b/editor/project_manager/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")
diff --git a/editor/themes/SCsub b/editor/themes/SCsub
index e8f96e4299..5a9949dfa7 100644
--- a/editor/themes/SCsub
+++ b/editor/themes/SCsub
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+from misc.utility.scons_hints import *
Import("env")