123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- namespace UnityGameFramework.Editor.ResourceTools
- {
- public sealed partial class ResourceBuilderController
- {
- private sealed class VersionListData
- {
- public VersionListData(string path, int length, int hashCode, int compressedLength, int compressedHashCode)
- {
- Path = path;
- Length = length;
- HashCode = hashCode;
- CompressedLength = compressedLength;
- CompressedHashCode = compressedHashCode;
- }
- public string Path
- {
- get;
- private set;
- }
- public int Length
- {
- get;
- private set;
- }
- public int HashCode
- {
- get;
- private set;
- }
- public int CompressedLength
- {
- get;
- private set;
- }
- public int CompressedHashCode
- {
- get;
- private set;
- }
- }
- }
- }
|