Browse Source

Adding empty C# script template

Josh Engebretson 9 years ago
parent
commit
07ca0c02ba

+ 6 - 0
Resources/EditorData/AtomicEditor/templates/file_template_definitions.json

@@ -31,5 +31,11 @@
         "templateType": "script",
         "ext": ".ts",
         "filename": "AtomicEditor/templates/template_ts_script.ts"
+    }, {
+        "name": "Basic (CSharp)",
+        "desc": "An empty script for CSharp",
+        "templateType": "script",
+        "ext": ".cs",
+        "filename": "AtomicEditor/templates/template_cs_script.cs"
     }]
 }

+ 3 - 0
Resources/EditorData/AtomicEditor/templates/template_cs_script.cs

@@ -0,0 +1,3 @@
+
+using System;
+using AtomicEngine;