Attack.hpp
Go to the documentation of this file.
1 // This code is based on Sabberstone project.
2 // Copyright (c) 2017-2019 SabberStone Team, darkfriend77 & rnilva
3 // Hearthstone++ is hearthstone simulator using C++ with reinforcement learning.
4 // Copyright (c) 2019 Chris Ohk, Youngjoong Kim, SeungHyun Jeon
5 
6 #ifndef ROSETTASTONE_ATTACK_HPP
7 #define ROSETTASTONE_ATTACK_HPP
8 
10 
12 {
17 void Attack(Player& player, Character* source, Character* target);
18 } // namespace RosettaStone::Generic
19 
20 #endif // ROSETTASTONE_ATTACK_HPP
Definition: Attack.hpp:11
void Attack(Player &player, Character *source, Character *target)
Player class.
Definition: Player.hpp:33
Abstract character class that stores hero and minion data.
Definition: Character.hpp:21