From 929dccb75a1405737975d76648e015a3e7c00177 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 7 Oct 2017 23:07:10 -0400 Subject: reorganise repo structure --- src/StardewModdingAPI/IAssetInfo.cs | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/StardewModdingAPI/IAssetInfo.cs (limited to 'src/StardewModdingAPI/IAssetInfo.cs') diff --git a/src/StardewModdingAPI/IAssetInfo.cs b/src/StardewModdingAPI/IAssetInfo.cs deleted file mode 100644 index 5dd58e2e..00000000 --- a/src/StardewModdingAPI/IAssetInfo.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; - -namespace StardewModdingAPI -{ - /// Basic metadata for a content asset. - public interface IAssetInfo - { - /********* - ** Accessors - *********/ - /// The content's locale code, if the content is localised. - string Locale { get; } - - /// The normalised asset name being read. The format may change between platforms; see to compare with a known path. - string AssetName { get; } - - /// The content data type. - Type DataType { get; } - - - /********* - ** Public methods - *********/ - /// Get whether the asset name being loaded matches a given name after normalisation. - /// The expected asset path, relative to the game's content folder and without the .xnb extension or locale suffix (like 'Data\ObjectInformation'). - bool AssetNameEquals(string path); - } -} -- cgit