summaryrefslogtreecommitdiff
path: root/inc/List.hpp
blob: 56d25e9996f81b428092fb342d98fefa8700bcee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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(vector <Location> i);
        void draw(WINDOW * w);
        void action();
        void order(Location l);
    private:
        vector <Character> men;
        vector <Location> impassable;
};

#endif