summaryrefslogtreecommitdiff
path: root/inc/List.hpp
blob: ce3f413414255b9f9bdd4dc6f0a1e898b5195797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef list_h
#define list_h

#include "Character.hpp"
#include <vector>
#include <ncurses.h>
#include <ctime>
#include <cstdlib>
using namespace std;

class List
{
    public:
        List();
        void draw(WINDOW * w);
        void action();
    private:
        vector <Character> men; 
};

#endif