1#pragma once 2#include "Particle.h" 3 4class WaterDropParticle : public Particle 5{ 6public: 7 virtual eINSTANCEOF GetType() { return eType_WATERDROPPARTICLE; } 8 WaterDropParticle(Level *level, double x, double y, double z) ; 9 virtual void tick(); 10};