Replace custom MS types with STL types #179
Labels
enhancement 🔧
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
med priority
Issue that should be addressed as time allows.
The types that need replacing:
msstring
- It's a C style fixed string type. Replacing it withstd::string
isn't advised since it's dynamically allocated. It'll probably be best to make our fix fixed string inherited fromstd::basic_string
or use a library like this that contains a fixed string.msvariant
- A variant variable that fits a c string, int, or floatmsstring_ref
- Type defined as aconst char*
mslist
- a linked list list that is used a vector throughout the code as well. Should be replaced with astd::vector
orstd::list
depending on what should be used there.string_i
-In debug mode, a normal string. In release mode its created within the engine and released each level
msnew
- Should probably be replaced with just new.This should be done after angelscript is embedded.
The text was updated successfully, but these errors were encountered: