diff options
author | tom <tom@ground-control> | 2015-11-20 15:23:18 -0600 |
---|---|---|
committer | tom <tom@ground-control> | 2015-11-20 15:23:18 -0600 |
commit | 032d4f98c809bde6231ff78ba50e8c244334739f (patch) | |
tree | 9e94f4b1d50d443e82509c7a3060173b5f602eaf /inc | |
parent | 5d3145ca44d7966326136adc1bd2dec910b5a8d2 (diff) |
made guys randomly walk around and a timeout on getch
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; }; |