Пример #1
0
 public BlueTextureWrapper this[LightTexture2 textureType]
 {
     get
     {
         return(this.textures[textureType]);
     }
 }
Пример #2
0
 public BlueTextureWrapper this[LightTexture2 textureType]
 {
     get
     {
         return this.textures[textureType];
     }
 }
Пример #3
0
 public BlueTextureWrapper AddTexture(Image bmp, int width, int height, LightTexture2 textureType)
 {
     this.textures[textureType] = BuildTexture(bmp, height, width);
     return(this.textures[textureType]);
 }
Пример #4
0
 public BlueTextureWrapper AddTexture(Image bmp, int width, int height, LightTexture2 textureType)
 {
     this.textures[textureType] = BuildTexture(bmp, height, width);
     return this.textures[textureType];
 }
Пример #5
0
 public BlueTextureWrapper this[LightTexture2 textureType] => this.textures[textureType];