I want to have an array of 2 Vector2
vectors and want to initialize them in the same line, so I tried this:
public readonly Vector2[] TOWER_POS = {new Vector2(2,0), new Vector2(2,6)};
Unfortunately TOWER_POS
ends up being a Vector2
instead of an array (according to MonoDevelop…)
Suggestions?