//------------------------------------------------------------ // Game Framework // Copyright © 2013-2021 loyalsoft. All rights reserved. // Homepage: http://www.game7000.com/ // Feedback: http://www.game7000.com/ //------------------------------------------------------------ namespace GameFramework.Resource { /// /// 解密资源回调函数。 /// /// 要解密的资源二进制流。 /// 解密二进制流的起始位置。 /// 解密二进制流的长度。 /// 资源名称。 /// 变体名称。 /// 扩展名称。 /// 资源是否在只读区。 /// 文件系统名称。 /// 资源加载方式。 /// 资源大小。 /// 资源哈希值。 public delegate void DecryptResourceCallback(byte[] bytes, int startIndex, int count, string name, string variant, string extension, bool storageInReadOnly, string fileSystem, byte loadType, int length, int hashCode); }