(10-09-2015, 06:08 PM)The Mug Wrote: EDIT: http://root.cern.ch/root/html/TString.html
if this information is relevant for SOMA
I don't think that's the case.
The TString type you linked to is from something called ROOT - a library used by particle physicists. I happen to have a friend who is a physicist, and I was helping him write some code that uses ROOT, so this is how I know.
Also, if you look at the URL, it has CERN in it - the organization that operates the Large Hadron Collider (LHC), the particle accelerator that was used to discover the Higgs boson.
The tString the game uses is a string type provided by the HPL3 engine itself, and it's declaration can be found in hps_api.hps (search for "class tString").
P.S. For those who know a bit about C++, I'm guessing that the "t" prefix stands for a typedef, and that the tString is probably an exported typedef of some C++ string type - like std:
tring. There's also a tWString, which I'm guessing could be a typedef of std::wstring.