mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 19:39:00 +02:00
11 lines
281 B
C++
11 lines
281 B
C++
#pragma once
|
|
|
|
#include "Particle.h"
|
|
|
|
class SuspendedTownParticle : public Particle
|
|
{
|
|
public:
|
|
virtual eINSTANCEOF GetType() { return eType_SUSPENDEDTOWNPARTICLE; }
|
|
SuspendedTownParticle(Level *level, double x, double y, double z, double xa, double ya, double za);
|
|
void tick();
|
|
}; |