Example #1
0
 private static void WriteLayer(GameImage image, string generalPath)
 {
     image.Layer.ToImageFile(generalPath);
 }
Example #2
0
 public GameFont(GameImage image, byte[] widths)
 {
     CharactersImage  = Exceptions.CheckArgumentNull(image, "image");
     CharactersWidths = Exceptions.CheckArgumentNull(widths, "widths");
 }