-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrint.h
More file actions
executable file
·35 lines (29 loc) · 827 Bytes
/
Print.h
File metadata and controls
executable file
·35 lines (29 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* Print.h
*
* Created on: Apr 3, 2017
* Author: Acer User
*/
#ifndef PRINT_H_
#define PRINT_H_
#include <sstream>
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include "ascii_graphics.h"
#include "Player.h"
#include "Card.h"
#include "Minion.h"
#include "Board.h"
#include "Ability.h"
#include "Enchantment.h"
#include "Spells.h"
void pushMinion(std::vector<card_template_t> * list, Minion* minion);
void pushRitual(std::vector<card_template_t> * list, Ritual* ritual);
void pushSpell(std::vector<card_template_t> * list, Spell* spell);
//void pushEnchantment(std::vector<card_template_t> * list, Enchantment* enchantment);
void pushEmptyCard(std::vector<card_template_t> * list);
void printBoard(Player *p1, Player* p2);
void printHand (Player* player);
#endif /* PRINT_H_ */