aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ClockItem.h
blob: 3ee4b5a469ad9e6720159409085dec7bd3a8618d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
// 4J Added so that we can override the icon id used to calculate the texture UV's for each player

#include "Item.h"

class ClockItem : public Item
{
private:
	Icon **icons;
	static const wstring TEXTURE_PLAYER_ICON[XUSER_MAX_COUNT];

public:
	ClockItem(int id);

	virtual Icon *getIcon(int auxValue);

	//@Override
	void registerIcons(IconRegister *iconRegister);
};