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

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

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

#endif