melledamage.h 318 B

123456789101112131415
  1. //
  2. // Created by IgorBat on 23.04.2018.
  3. //
  4. #ifndef GAME_CLIENT_MELLEDAMAGE_H
  5. #define GAME_CLIENT_MELLEDAMAGE_H
  6. #pragma once
  7. #include <cassert>
  8. #include "effect\effect.h"
  9. class melledamage : public Effect {
  10. void OperateOnCell(Cell* cell);
  11. void OperateOnUnit(Unit* unit);
  12. };
  13. #endif //GAME_CLIENT_MELLEDAMAGE_H