summaryrefslogtreecommitdiff
path: root/inc/List.hpp
blob: e99739180c0d17d60c88d30c62e9f6609fdffdcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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 actions();
    private:
        vector <Character> men;
};

#endif