blob: d0aa32e49508acd7d20a0db782090856ffe374f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Item.h"
class NameTagItem : public Item
{
public:
NameTagItem(int id);
bool interactEnemy(shared_ptr<ItemInstance> itemInstance, shared_ptr<Player> player, shared_ptr<LivingEntity> target);
};
|