コード例 #1
0
        public VfsBakedAsset_FileInfo(IMongoDatabase db, IMongoCollection <Mongo.BakedAssets> bac, VfsBakedAssets vfsBakedAssets, IVfsPath path)
        {
            this.db             = db;
            this.vfsBakedAssets = vfsBakedAssets;

            this.path = path;
        }
コード例 #2
0
        public VfsBakedAsset_Common(IMongoDatabase db, IMongoCollection <BakedAssets> bac, VfsBakedAssets vfsBakedAssets, VfsBakedAsset_Directory dir, VfsBakedAsset_FileInfo file, IVfsPath path)
        {
            this.db             = db;
            this.bac            = bac;
            this.vfsBakedAssets = vfsBakedAssets;
            this.dir            = dir;
            this.file           = file;
            this.path           = path;

            if (dir != null)
            {
                com = dir;
            }
            if (file != null)
            {
                com = file;
            }
        }
コード例 #3
0
 public VfsBakedAsset_FS(IMongoDatabase db, VfsBakedAssets vfsBakedAssets, IVfsPath path)
 {
     this.db             = db;
     this.vfsBakedAssets = vfsBakedAssets;
     this.path           = path;
 }