mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 13:54:57 +00:00
9 lines
252 B
C++
9 lines
252 B
C++
#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();
|
|
}; |