Files
GabsPuNs-Project_Zenith_Main/Minecraft.World/Attribute.cpp
GabsPuNs 3b09eb95db New File System and Cleanup some code Part 3
* Remove stdafx.h and some <unordered_set> includes
* Update Minecraft Server Defines and remove more unused folders/files
* Unbloat stdafx.h from Minecraft.World
2026-06-07 00:10:47 -04:00

17 lines
452 B
C++

#include "Attribute.h"
const int Attribute::AttributeNames [] =
{
IDS_ATTRIBUTE_NAME_GENERIC_MAXHEALTH,
IDS_ATTRIBUTE_NAME_GENERIC_FOLLOWRANGE,
IDS_ATTRIBUTE_NAME_GENERIC_KNOCKBACKRESISTANCE,
IDS_ATTRIBUTE_NAME_GENERIC_MOVEMENTSPEED,
IDS_ATTRIBUTE_NAME_GENERIC_ATTACKDAMAGE,
IDS_ATTRIBUTE_NAME_HORSE_JUMPSTRENGTH,
IDS_ATTRIBUTE_NAME_ZOMBIE_SPAWNREINFORCEMENTS,
};
int Attribute::getName(eATTRIBUTE_ID id)
{
return AttributeNames[id];
}