#ifndef list_h #define list_h #include "creature.hpp" #include "resource.hpp" #include "window.hpp" class List { public: List(Window m); void Behavior(); private: std::vector R; std::vector C; Window main; int ** L; }; #endif