first commit
This commit is contained in:
14
Minecraft.World/LootBonusEnchantment.h
Normal file
14
Minecraft.World/LootBonusEnchantment.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "Enchantment.h"
|
||||
|
||||
class LootBonusEnchantment : public Enchantment
|
||||
{
|
||||
public:
|
||||
LootBonusEnchantment(int id, int frequency, const EnchantmentCategory *cat);
|
||||
|
||||
virtual int getMinCost(int level);
|
||||
virtual int getMaxCost(int level);
|
||||
virtual int getMaxLevel();
|
||||
virtual bool isCompatibleWith(Enchantment *other) const;
|
||||
};
|
||||
Reference in New Issue
Block a user