Built in arrays don't have .Add, UnityEngine.Array does, as do List and ArrayList
Your best bet is to use List really:
import System.Collections.Generic;
public var struc : List.;
Then you can use struc.Add(whatever)
↧