25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef SPELL_WARZ_GAME_HPP
|
|
#define SPELL_WARZ_GAME_HPP 1
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include "Element.hpp"
|
|
#include "Spell.hpp"
|
|
#include "Character.hpp"
|
|
|
|
namespace Game
|
|
{
|
|
extern std::map<std::string, Element> Elements;
|
|
extern std::map<Element, std::vector<Spell>> SpellBook;
|
|
extern std::vector<Character> PlayerParty;
|
|
|
|
void init();
|
|
bool isPartyAlive(std::vector<Character *> &party);
|
|
|
|
} // namespace Game
|
|
|
|
#endif
|