RocksmithToolkitLib.Sng2014HSL.Sng2014FileWriter.parseActions C# (CSharp) Method

parseActions() private method

private parseActions ( Song2014 xml, Sng2014File sng ) : void
xml Song2014
sng Sng2014File
return void
        private void parseActions(Song2014 xml, Sng2014File sng)
        {
            // there is no XML example, EOF does not support it either
            sng.Actions = new ActionSection();
            sng.Actions.Count = 0;
            sng.Actions.Actions = new Action[sng.Actions.Count];

            // no RS2 SNG is using this
            // for (int i = 0; i < sng.Actions.Count; i++) {
            //     //var action = xml.?[i];
            //     var a = new Action();
            //     //a.Time = action.Time;
            //     //read_string(action.ActionName, a.ActionName);
            //     sng.Actions.Actions[i] = a;
            // }
        }