Hi everyone,
I'm working on a 3D game, and I've got a problem with one of my constructors, wich contains arrays for vertices and textures coordinates. It's saying "The code of constructor [MyClass] is exceeding the 65535 bytes limit" and I suspect this error to come from the amount of data in the different arrays.
As I don't want to handle external files, is there a way to place the arrays in different xml files stored in the ressource folder and to load them in my constructor just like the way it's done for the strings (with getString) ?

