/** <summary> Inserts the specified scenery object to the scenery group at the specified index. </summary> */ public bool Insert(int index, SceneryGroupItem item) { return(Insert(index, item.Flags, item.FileName, item.CheckSum)); }
/** <summary> Adds the specified scenery object to the scenery group. </summary> */ public bool Add(SceneryGroupItem item) { return(Add(item.Flags, item.FileName, item.CheckSum)); }