forked from andor9/tyrant_optimize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxml.h
More file actions
18 lines (14 loc) · 611 Bytes
/
xml.h
File metadata and controls
18 lines (14 loc) · 611 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef XML_H_INCLUDED
#define XML_H_INCLUDED
#include <string>
#include "tyrant.h"
class Cards;
class Decks;
class Achievement;
Skill skill_name_to_id(const std::string & name, bool do_warn=true);
void load_cards_xml(Cards & all_cards, const char * filename);
void load_decks_xml(Decks& decks, const Cards& all_cards, const char * mission_filename, const char * raid_filename);
void load_recipes_xml(Cards& all_cards, const char * filename);
void read_missions(Decks& decks, const Cards& all_cards, std::string filename);
void read_raids(Decks& decks, const Cards& all_cards, std::string filename);
#endif