From ce1172ca9a15439b238c9a033b51b0c1793ac989 Mon Sep 17 00:00:00 2001 From: Perfare Date: Fri, 19 Nov 2021 18:24:18 +0800 Subject: [PATCH] rename. closed #817 --- AssetStudio/Math/Half.cs | 6 +++--- AssetStudio/Math/HalfHelper.cs | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) 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.