三国卡牌客户端基础资源仓库
lcy
10 小时以前 68dfd7c49d3686a5db37f5673d31d2e1bcfbc9dd
1
2
3
4
5
6
7
8
9
10
11
using System.IO;
 
namespace UnityFS
{
    public class StreamFile
    {
        public string path;
        public string fileName;
        public Stream stream;
    }
}