mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-28 23:06:24 +02:00
28 lines
607 B
C++
28 lines
607 B
C++
#pragma once
|
|
|
|
#include "CAttackAnimation.h"
|
|
|
|
|
|
class CBattleInterface;
|
|
class CStack;
|
|
|
|
/*
|
|
* CMeleeAttackAnimation.h, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
|
|
/// Hand-to-hand attack
|
|
class CMeleeAttackAnimation : public CAttackAnimation
|
|
{
|
|
public:
|
|
bool init();
|
|
void nextFrame();
|
|
void endAnim();
|
|
|
|
CMeleeAttackAnimation(CBattleInterface *_owner, const CStack *attacker, SHexField _dest, const CStack *_attacked);
|
|
}; |