From 3a0100ed372c116448164b1bf06c7339f6fd0136 Mon Sep 17 00:00:00 2001 From: Perfare Date: Fri, 14 Jun 2019 12:47:22 +0800 Subject: [PATCH] update --- AssetStudio/AssetStudio.csproj | 2 +- AssetStudio/AssetsManager.cs | 2 +- AssetStudio/Math/{Matrix4x4f.cs => Matrix4x4.cs} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename AssetStudio/Math/{Matrix4x4f.cs => Matrix4x4.cs} (100%) diff --git a/AssetStudio/AssetStudio.csproj b/AssetStudio/AssetStudio.csproj index 9781fef..fd3a6ae 100644 --- a/AssetStudio/AssetStudio.csproj +++ b/AssetStudio/AssetStudio.csproj @@ -60,7 +60,7 @@ - + diff --git a/AssetStudio/AssetsManager.cs b/AssetStudio/AssetsManager.cs index 5e5a88f..aa13ecc 100644 --- a/AssetStudio/AssetsManager.cs +++ b/AssetStudio/AssetsManager.cs @@ -15,7 +15,7 @@ namespace AssetStudio private HashSet importFilesHash = new HashSet(); private HashSet assetsFileListHash = new HashSet(); - public void LoadFiles(string[] files) + public void LoadFiles(params string[] files) { var path = Path.GetDirectoryName(files[0]); MergeSplitAssets(path); diff --git a/AssetStudio/Math/Matrix4x4f.cs b/AssetStudio/Math/Matrix4x4.cs similarity index 100% rename from AssetStudio/Math/Matrix4x4f.cs rename to AssetStudio/Math/Matrix4x4.cs