mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-24 17:24:57 +01:00
19 lines
373 B
C
19 lines
373 B
C
|
#ifndef LOOT_DATA_ATTRIBUTE_HELPER_H
|
||
|
#define LOOT_DATA_ATTRIBUTE_HELPER_H
|
||
|
|
||
|
class LootDataAttributeHelper
|
||
|
{
|
||
|
private:
|
||
|
int itemId;
|
||
|
float percent;
|
||
|
|
||
|
public:
|
||
|
int getItemId();
|
||
|
void setItemId(int value);
|
||
|
float getPercent();
|
||
|
void setPercent(float value);
|
||
|
LootDataAttributeHelper(int itemId, float percent);
|
||
|
}
|
||
|
|
||
|
#endif
|