Exemplo n.º 1
0
 public Atlas GetAtlas(int atlas, bool autoCreate = false)
 {
     var result = this[atlas];
     if (result == null && autoCreate)
     {
         result = new Atlas();
         SetAtlas(atlas, result);
     }
     return result;
 }
Exemplo n.º 2
0
 public void SetAtlas(int atlas, Atlas value)
 {
     this[atlas] = value;
 }