Beispiel #1
0
 public static string CreateImage(gbrainy.Core.Main.Game game, int i)
 {
     string file = images_dir + "/" + i.ToString () + ".png";
     GameImage image = new GameImage (game);
     image.CreateImage (file);
     return file;
 }
Beispiel #2
0
 public GameImage(gbrainy.Core.Main.Game game)
 {
     this.game = game;
 }