So I have an array of Points
Point[] point ={new Point (x,y), ....}
And an array of Lines from those points
Line[] line = {new Line(point[1],point[5]),....}
If I store this in a class i exceed the 65535 bytes.
I thought of getting it from external files as splitting them up in other classes is no option. But the lines have to get their points from the point array.
So if anyone has an idea on how to do this?