LynnaLab.Label.Label C# (CSharp) Method

Label() public method

public Label ( FileParser parser, string n, IList spacing = null ) : System
parser FileParser
n string
spacing IList
return System
        public Label(FileParser parser, string n, IList<int> spacing=null)
            : base(parser, spacing)
        {
            name = n;
            if (spacing == null) {
                this.spacing = new List<int>{0,0};
            }
            while (this.spacing.Count < 2)
                this.spacing.Add(0);
        }