ValksGodotTools / Template

Template to be used for all Godot 4 C# starting projects
MIT License
66 stars 5 forks source link

Renaming the namespace is somewhat tedious #9

Closed valkyrienyanko closed 9 months ago

valkyrienyanko commented 1 year ago
using Template.Platformer2D;

namespace Template;

Usually new projects just need one namespace. So it's nice to just rename the namespace but then you also have to get rid of all instances of using Template.Platformer2D; but I guess it can't be helped.