rednir / OsuSkinMixer

Create a skin mix in a couple clicks.
MIT License
124 stars 3 forks source link

Cleanup the usings #112

Closed valkyrienyanko closed 1 year ago

valkyrienyanko commented 1 year ago

Making use of the global modifier introduced in C#.

Also all local usings have been defined after each file-scoped namespace. This ensures that the local using always overrides the global using and ensures you won't run into for example should I be using Godot.Collections.Dictionary<T1, T2> or System.Collections.Generic.Dictioanry<T1, T2>.

rednir commented 1 year ago

This does look a lot better to work with, thank you