EnemyInfo.h 422 B

123456789101112131415161718192021222324
  1. /*
  2. * EnemyInfo.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. namespace battle
  12. {
  13. class Unit;
  14. }
  15. class EnemyInfo
  16. {
  17. public:
  18. const battle::Unit * s;
  19. EnemyInfo(const battle::Unit * _s) : s(_s)
  20. {}
  21. bool operator==(const EnemyInfo & ei) const;
  22. };