Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
11 lines
220 B
C++
11 lines
220 B
C++
#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);
|
|
}; |