#ifndef __UTIL_H__ #define __UTIL_H__ #include #include using namespace std; void print(const string & in); vector tokenize(const string & str, const string & delimiters=" "); bool parse_n_load(const string & input, string & name, string & type, int & max_hp, int & strength, int & speed, int & magic); #endif