EmbroideryReader/PesFile/StitchBlock.cs

21 wiersze
403 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
namespace PesFile
{
public class StitchBlock
{
public Color color;
public Int32 colorIndex;
public Int32 stitchesTotal;
public Stitch[] stitches;
public StitchBlock()
{
color = System.Drawing.Color.Black;
}
}
}