enhancement 🔧good first issuehelp wantedmed priority
仓库指标
- 星标
- (20 个星标)
- PR 合并指标
- (PR 指标待抓取)
描述
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.