Merge branch 'cs-script-namespace' of https://github.com/Tryibion/FlaxEngine into Tryibion-cs-script-namespace

This commit is contained in:
Wojtek Figat
2023-10-04 17:36:10 +02:00

View File

@@ -2,8 +2,8 @@
using System.Collections.Generic; using System.Collections.Generic;
using FlaxEngine; using FlaxEngine;
namespace %namespace% namespace %namespace%;
{
/// <summary> /// <summary>
/// %class% Script. /// %class% Script.
/// </summary> /// </summary>
@@ -33,4 +33,4 @@ namespace %namespace%
// Here you can add code that needs to be called every frame // Here you can add code that needs to be called every frame
} }
} }
}