public ISpriteFlyweight this[TIPO_PERSONAGEM tipo]
 {
     get
     {
         return(Flyweights[tipo]);
     }
     set
     {
         Flyweights[tipo] = value;
     }
 }
 public ISpriteFlyweight this[TIPO_PERSONAGEM tipo]
 {
     get
     {
         return Flyweights[tipo];
     }
     set
     {
         Flyweights[tipo] = value;
     }
 }