aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Hopper.h
blob: 08555dcf3aee6450b5a9be8f016c630877f9c8d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "Container.h"

class Level;

class Hopper : public virtual Container
{
public:
	virtual Level *getLevel() = 0;
	virtual double getLevelX() = 0;
	virtual double getLevelY() = 0;
	virtual double getLevelZ() = 0;
};