aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/WaterDropParticle.h
blob: 0822cef8a7d63bc998da3196315f49d159cee535 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include "Particle.h"

class WaterDropParticle : public Particle
{
public:
	virtual eINSTANCEOF GetType() { return eType_WATERDROPPARTICLE; }
	WaterDropParticle(Level *level, double x, double y, double z) ;
    virtual void tick();
};