WraitheDX / realms_shattered

This is a CLI (command line interface) text RPG programmed in C++.
11 stars 6 forks source link

Add file_tags_parse() function to FileIO #56

Closed WraitheDX closed 4 years ago

WraitheDX commented 4 years ago

Function should be defined as:

const bool FileIO::file_tags_parse( std::map <std::string, std::string> &parsed_tags, file_name );

Function should load the file using FileIO's file_read() function. parsed_tags should be popluated with key/value pairs. keys should be text left of semicolon, values should be text right of semicolon.

WraitheDX commented 4 years ago

I am tackling this issue now. Function has been implemented.