It would look something like this. You could put this script on a GameObject and in the editor set up as many units in that array as you want. I do recommend using better names than I did:
public class ObjectThatContainsUnits : MonoBehaviour
{
public GameObject[] _anArrayOfUnits;
}
↧