first commit
This commit is contained in:
19
Minecraft.Client/FootstepParticle.h
Normal file
19
Minecraft.Client/FootstepParticle.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
#include "Particle.h"
|
||||
class Textures;
|
||||
|
||||
class FootstepParticle : public Particle
|
||||
{
|
||||
public:
|
||||
virtual eINSTANCEOF GetType() { return eType_FOOTSTEPPARTICLE; }
|
||||
private:
|
||||
int life;
|
||||
int lifeTime;
|
||||
Textures *textures;
|
||||
|
||||
public:
|
||||
FootstepParticle(Textures *textures, Level *level, double x, double y, double z);
|
||||
virtual void render(Tesselator *t, float a, float xa, float ya, float za, float xa2, float za2);
|
||||
virtual void tick();
|
||||
virtual int getParticleTexture();
|
||||
};
|
||||
Reference in New Issue
Block a user