aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/IconRegister.h
blob: 3ea80bb867271353b56dcba870f1a2bdd366143e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
using namespace std;

class Icon;

class IconRegister
{
public:
	// 4J Stu - register is a reserved keyword in C++
	virtual Icon *registerIcon(const wstring &name) = 0;
	virtual int getIconType() = 0;
};