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(); };