mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-17 11:03:52 +00:00
Initial commit
This commit is contained in:
parent
def8cb4153
commit
b691c43c44
19437 changed files with 4363922 additions and 0 deletions
14
Minecraft.Client/SplashParticle.cpp
Normal file
14
Minecraft.Client/SplashParticle.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "stdafx.h"
|
||||
#include "SplashParticle.h"
|
||||
|
||||
SplashParticle::SplashParticle(Level *level, double x, double y, double z, double xa, double ya, double za) : WaterDropParticle(level, x, y, z)
|
||||
{
|
||||
gravity = 0.04f;
|
||||
setNextMiscAnimTex();
|
||||
if (ya == 0 && (xa != 0 || za != 0))
|
||||
{
|
||||
this->xd = xa;
|
||||
this->yd = ya + 0.1;
|
||||
this->zd = za;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue