private SetFontSizeCommand DeserializeFontSizeTag(ParsedTag tag)
        {
            string strSize = tag.GetAttribute("size");
            int    size    = int.Parse(strSize);

            return(new SetFontSizeCommand(size));
        }
        private SetColorCommand DeserializeColorTag(ParsedTag tag)
        {
            string index = tag.GetAttribute("index");
            var    bytes = BinaryUtils.HexStrToBytes(index);

            return(new SetColorCommand(SC3ExpressionParser.ParseExpression(bytes)));
        }