aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/SuspendedParticle.h
blob: 8273b423ef9f8e8ebac03c9f8b8a48ae75f4089a (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "Particle.h"

class SuspendedParticle : public Particle
{
public:
	virtual eINSTANCEOF GetType() { return eType_SUSPENDEDPARTICLE; }
	SuspendedParticle(Level *level, double x, double y, double z, double xa, double ya, double za);
	void tick();
};