Beispiel #1
0
 public TechTextureWrapper this[TechTexture textureType]
 {
     get
     {
         return(this.textures[textureType]);
     }
 }
 public TechTextureWrapper this[TechTexture textureType]
 {
     get
     {
         return this.textures[textureType];
     }
 }
Beispiel #3
0
 public TechTextureWrapper AddTexture(Image bmp, int width, int height, TechTexture textureType)
 {
     this.textures[textureType] = BuildTexture(bmp, height, width);
     return(this.textures[textureType]);
 }
 public TechTextureWrapper AddTexture(Image bmp, int width, int height, TechTexture textureType)
 {
     this.textures[textureType] = BuildTexture(bmp, height, width);
     return this.textures[textureType];
 }