Exemple #1
0
 public static bloWindowMirror convertMirror(bloTextureBase tbase)
 {
     return((bloWindowMirror)(
                (3 - (int)tbase) |
                (((2 + (int)tbase) % 4) << 2) |
                (((1 - (int)tbase) % 4) << 4) |
                ((int)tbase << 6)
                ));
 }
Exemple #2
0
 public bloWindow(uint name, bloRectangle rectangle, bloTexture texture, bloTextureBase tbase, bloPalette palette)
 {
     mName    = name;
     mPalette = palette;
     initialize(texture, texture, texture, texture, bloEnum.convertMirror(tbase), rectangle);
 }
Exemple #3
0
 public bloWindow(bloTexture texture, bloTextureBase tbase)
 {
     initialize(texture, texture, texture, texture, bloEnum.convertMirror(tbase), new bloRectangle());
 }