I want to create an array of pointers but the following syntax does not work

entity* pShip[5];

Is there anyway to do this, I would rather loop through my set of entities that I create instead of create 5 entity*.

I saw the ent_next but then I need to filter out the entities that I do not want.

Are arrays allowed for pointers ?

Jay