示例#1
0
    public override void Load(string[] elements)
    {
        ActionID     = int.Parse(elements[0]);
        TimeToFlow   = float.Parse(elements[1]);
        FlowingTime  = float.Parse(elements[2]);
        Comment      = elements[3];
        CommentColor = ColorParser.ToColorOrWhite(elements[4]);
        bool tempBool;

        IsBold = bool.TryParse(elements[5], out tempBool);
    }