Particle, ParticleMgr done

This commit is contained in:
Fire-Head 2019-05-29 03:52:30 +03:00
parent c5a058b615
commit 31e7428bdf
14 changed files with 2852 additions and 126 deletions

9
src/render/Shadows.h Normal file
View file

@ -0,0 +1,9 @@
#pragma once
struct RwTexture;
class CShadows
{
public:
static void AddPermanentShadow(unsigned char ShadowType, RwTexture* pTexture, CVector* pPosn, float fX1, float fY1, float fX2, float fY2, short nTransparency, unsigned char nRed, unsigned char nGreen, unsigned char nBlue, float fZDistance, unsigned int nTime, float fScale);
};