- added more utilities from GZDoom - TArray/TMap and FileReader.

This commit is contained in:
Christoph Oelckers 2019-09-23 19:52:25 +02:00
parent 330c80246e
commit 034ce097c5
9 changed files with 3348 additions and 0 deletions

View file

@ -67,6 +67,17 @@ FArgs::FArgs(int argc, char **argv)
SetArgs(argc, argv);
}
//===========================================================================
//
// FArgs Argv Constructor
//
//===========================================================================
FArgs::FArgs(int argc, const char** argv)
{
SetArgs(argc, const_cast<char **>(argv)); // Thanks, C++, for the inflexible const casting rules...
}
//===========================================================================
//
// FArgs String Argv Constructor