All is well - documentation on urho is sea.
Hmm, and I’m drowning in it …
The task seems to be simple and it is like this:
You need to stupidly load your format (albeit text) the ENTIRE file into a string.
The task is a little more difficult:
Something like this:
File file("my.txt");
String mystr[file.size()];
file.Read(mystr.data(), file.size());
Vector< String > map = mystr.Split('\n');
How to write this in Angelscript correctly to make it work?