Files
LegacyMultiplayerProject/Minecraft.Client/Common/Tutorial/LookAtEntityHint.h
DrPerkyLegit b3e825ef9c Initial commit
2026-06-23 01:07:42 -04:00

20 lines
410 B
C++

#pragma once
using namespace std;
#include "..\..\..\Minecraft.World\Class.h"
#include "TutorialHint.h"
class ItemInstance;
class LookAtEntityHint : public TutorialHint
{
private:
eINSTANCEOF m_type;
int m_titleId;
public:
LookAtEntityHint(eTutorial_Hint id, Tutorial *tutorial, int descriptionId, int titleId, eINSTANCEOF type);
~LookAtEntityHint();
virtual bool onLookAtEntity(eINSTANCEOF type);
};