mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-27 12:22:45 +02:00
- Entity interface now has getNameTranslated & getNameTextID methods - Entity interface no longer has getName method - removed (most) usages of normalizeIndentifier workaround method - all moddable objects have identifier in form of mod:name - all moddable object register strings in form of mod.type.name
25 lines
395 B
C++
25 lines
395 B
C++
/*
|
|
* HeroClass.h, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "Entity.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
class HeroClassID;
|
|
|
|
class DLL_LINKAGE HeroClass : public EntityT<HeroClassID>
|
|
{
|
|
};
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|