public Entity AddListArray(System.Collections.Generic.List <string>[] newListArray)
        {
            var component = new ListArrayComponent();

            component.listArray = newListArray;
            return(AddListArray(component));
        }
 public Entity ReplaceListArray(System.Collections.Generic.List<string>[] newListArray)
 {
     ListArrayComponent component;
     if (hasListArray) {
         WillRemoveComponent(ComponentIds.ListArray);
         component = listArray;
     } else {
         component = new ListArrayComponent();
     }
     component.listArray = newListArray;
     return ReplaceComponent(ComponentIds.ListArray, component);
 }
        public Entity ReplaceListArray(System.Collections.Generic.List <string>[] newListArray)
        {
            ListArrayComponent component;

            if (hasListArray)
            {
                WillRemoveComponent(ComponentIds.ListArray);
                component = listArray;
            }
            else
            {
                component = new ListArrayComponent();
            }
            component.listArray = newListArray;
            return(ReplaceComponent(ComponentIds.ListArray, component));
        }
 public Entity AddListArray(ListArrayComponent component)
 {
     return(AddComponent(ComponentIds.ListArray, component));
 }
 public Entity AddListArray(System.Collections.Generic.List<string>[] newListArray)
 {
     var component = new ListArrayComponent();
     component.listArray = newListArray;
     return AddListArray(component);
 }
 public Entity AddListArray(ListArrayComponent component)
 {
     return AddComponent(ComponentIds.ListArray, component);
 }