diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/List.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/List.hpp b/inc/List.hpp index 5f83846..e997391 100644 --- a/inc/List.hpp +++ b/inc/List.hpp @@ -4,6 +4,9 @@ #include "Character.hpp" #include <vector> #include <ncurses.h> +#include <ctime> +#include <cstdlib> + using namespace std; class List @@ -11,6 +14,7 @@ class List public: List(); void draw(WINDOW * w); + void actions(); private: vector <Character> men; }; |