Rogue.h 291 B

123456789101112131415161718
  1. #pragma once
  2. #include <iostream>
  3. #include <cassert>
  4. #include "unit.h"
  5. class Rogue : public Unit {
  6. Rogue() = delete;
  7. Rogue(std::string id);
  8. ~Rogue();
  9. //backstab
  10. bool canAttackForDistance(int distance);
  11. bool canAttackToCell(Cell* destination);
  12. bool canAttackUnit(Unit* target);
  13. };