Ejemplo n.º 1
0
    public static UIStateSprite create(UIToolkit manager, string filename, int xPos, int yPos, int depth)
    {
        var filenames = new string[1] {
            filename
        };

        return(UIStateSprite.create(manager, filenames, xPos, yPos, depth));
    }
Ejemplo n.º 2
0
 public static UIStateSprite create(UIToolkit manager, string[] filenames, int xPos, int yPos)
 {
     return(UIStateSprite.create(manager, filenames, xPos, yPos, 1));
 }
Ejemplo n.º 3
0
 public static UIStateSprite create(string[] filenames, int xPos, int yPos)
 {
     return(UIStateSprite.create(UI.firstToolkit, filenames, xPos, yPos));
 }