diff --git a/AssetStudio/Math/Half.cs b/AssetStudio/Math/Half.cs index 4bf2f57..45efd92 100644 --- a/AssetStudio/Math/Half.cs +++ b/AssetStudio/Math/Half.cs @@ -1,8 +1,8 @@ -using System.Diagnostics; +using System; +using System.Diagnostics; using System.Globalization; -using System.Runtime.InteropServices; -namespace System +namespace AssetStudio { /// /// Represents a half-precision floating point number. diff --git a/AssetStudio/Math/HalfHelper.cs b/AssetStudio/Math/HalfHelper.cs index 3020f98..82e46b4 100644 --- a/AssetStudio/Math/HalfHelper.cs +++ b/AssetStudio/Math/HalfHelper.cs @@ -1,6 +1,7 @@ -using System.Runtime.InteropServices; +using System; +using System.Runtime.InteropServices; -namespace System +namespace AssetStudio { /// /// Helper class for Half conversions and some low level operations.