123456789101112131415 |
- #ifndef GAME_CLIENT_MELLEDAMAGE_H
- #define GAME_CLIENT_MELLEDAMAGE_H
- #pragma once
- #include <cassert>
- #include "skills\spell.h"
- class melledamage : public Effect {
- void CastSpell(Cell* from, Cell* where, Unit* who, Unit* whom);
- };
- #endif
|