enhancement 🔧good first issuehelp wantedmed priority
Repository metrics
- Stars
- (20 個のスター)
- PR merge metrics
- (PR metrics pending)
説明
The types that need replacing:
msstring- It's a C style fixed string type. Replacing it withstd::stringisn't advised since it's dynamically allocated. It'll probably be best to make our fix fixed string inherited fromstd::basic_stringor 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::vectororstd::listdepending 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 levelmsnew- Should probably be replaced with just new.
This should be done after angelscript is embedded.