Пример #1
0
 public void AddCompoundLayer(ICompoundAsset asset)
 {
     try
     {
         //App.Log( "Adding layer to {0}", asset.Path );
         asset.AddLayer(m_fileStore);
     }
     catch (Exception e)
     {
         throw new AssetLoadException(asset.Path, e);
     }
 }
Пример #2
0
 public LoadedCompoundAsset(string path, ICompoundAsset asset)
 {
     Path    = path;
     Asset   = asset;
     Sources = new List <IAssetSource>();
 }