mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 12:13:36 +00:00
9 lines
288 B
C++
9 lines
288 B
C++
#pragma once
|
|
#include "WaterDropParticle.h"
|
|
|
|
class SplashParticle : public WaterDropParticle {
|
|
public:
|
|
virtual eINSTANCEOF GetType() { return eType_SPLASHPARTICLE; }
|
|
SplashParticle(Level* level, double x, double y, double z, double xa,
|
|
double ya, double za);
|
|
}; |