diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-05-29 03:52:30 +0300 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-05-29 03:52:30 +0300 |
commit | 31e7428bdf788a465c2f72f75793cac88ec5d77a (patch) | |
tree | c05bad8c041335995af7ce47c15f9f2496c03a7e /src/render/Shadows.cpp | |
parent | c5a058b615249a873a4cedea96a02594c3c8148c (diff) |
Particle, ParticleMgr done
Diffstat (limited to 'src/render/Shadows.cpp')
-rw-r--r-- | src/render/Shadows.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/render/Shadows.cpp b/src/render/Shadows.cpp new file mode 100644 index 00000000..ead84e92 --- /dev/null +++ b/src/render/Shadows.cpp @@ -0,0 +1,7 @@ +#include "common.h" +#include "Shadows.h" + +void CShadows::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) +{ + ((void (__cdecl *)(unsigned char, RwTexture*, CVector*, float, float, float, float, short, unsigned char, unsigned char, unsigned char, float, unsigned int, float))0x56EC50)(ShadowType, pTexture, pPosn, fX1, fY1, fX2, fY2, nTransparency, nRed, nGreen, nBlue, fZDistance, nTime, fScale); +} |