aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/NoteParticle.h
blob: b53910b8d2f85d1b1f2e9ce52ce57351c2f659a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#include "Particle.h"

class NoteParticle : public Particle
{
public:
	virtual eINSTANCEOF GetType() { return eType_NOTEPARTICLE; }
private:
	void init(Level *level, double x, double y, double z, double xa, double ya, double za, float scale);	// 4J - added
public:
    NoteParticle(Level *level, double x, double y, double z, double xa, double ya, double za);
    float oSize;
    NoteParticle(Level *level, double x, double y, double z, double xa, double ya, double za, float scale);
    virtual void render(Tesselator *t, float a, float xa, float ya, float za, float xa2, float za2);
    virtual void tick();
};