mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-12 16:00:32 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
|
||||
#include "TutorialHint.h"
|
||||
|
||||
class DiggerItem;
|
||||
class Level;
|
||||
|
||||
class DiggerItemHint : public TutorialHint {
|
||||
private:
|
||||
int* m_iItems;
|
||||
unsigned int m_iItemsCount;
|
||||
|
||||
public:
|
||||
DiggerItemHint(eTutorial_Hint id, Tutorial* tutorial, int descriptionId,
|
||||
int items[], unsigned int itemsLength);
|
||||
virtual int startDestroyBlock(std::shared_ptr<ItemInstance> item,
|
||||
Tile* tile);
|
||||
virtual int attack(std::shared_ptr<ItemInstance> item,
|
||||
std::shared_ptr<Entity> entity);
|
||||
};
|
||||
Reference in New Issue
Block a user