summaryrefslogtreecommitdiff
path: root/inc/List.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/List.hpp')
-rw-r--r--inc/List.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/inc/List.hpp b/inc/List.hpp
new file mode 100644
index 0000000..5f83846
--- /dev/null
+++ b/inc/List.hpp
@@ -0,0 +1,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