I have this:
private float dir = 0f;
private boolean ch = true;
private String = "No";
private int aB = 5;
How can I now, make an two dimensional array with this values?
e.g. array1[][]:
{ {0f, "true", "No", 5} }
Or should I make an array like this?
private String array1[][];
Saving all values as a String and then parse each item?
But I think, that this is not a good programming.
class Blah { float dir; boolean ch = true; ... } private Blah[] array;