#ifndef list_h #define list_h #include "Character.hpp" #include #include using namespace std; class List { public: List(); void draw(WINDOW * w); private: vector men; }; #endif