HeroTypeService.h 402 B

123456789101112131415161718192021
  1. /*
  2. * HeroTypeService.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. #include "EntityService.h"
  12. class HeroTypeID;
  13. class HeroType;
  14. class DLL_LINKAGE HeroTypeService : public EntityServiceT<HeroTypeID, HeroType>
  15. {
  16. public:
  17. };