this might be a stupid question, but is it possible to put array into Enum?
public enum Owners { Me, Neutral, Enemy[] }
My problem is, that I don't know the number of enemies before hand, so I would love to use it like Owners.Enemy[3]
. Is it this possible to do with Enum or should I just create a separate class for owners?