コード例 #1
0
 private static void WriteLayer(GameImage image, string generalPath)
 {
     image.Layer.ToImageFile(generalPath);
 }
コード例 #2
0
ファイル: GameFont.cs プロジェクト: rebootus/Esthar
 public GameFont(GameImage image, byte[] widths)
 {
     CharactersImage  = Exceptions.CheckArgumentNull(image, "image");
     CharactersWidths = Exceptions.CheckArgumentNull(widths, "widths");
 }