summaryrefslogtreecommitdiffstats
path: root/src/render/Lights.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-06-01 12:02:31 +0200
committeraap <aap@papnet.eu>2019-06-01 12:02:31 +0200
commit92434f01f1631d54207fb4395e3d5ab7e20941c5 (patch)
tree256adb4226cec31c683d10f9cfcdc4d0b03ee3db /src/render/Lights.h
parentadded CCoronas (diff)
downloadre3-92434f01f1631d54207fb4395e3d5ab7e20941c5.tar
re3-92434f01f1631d54207fb4395e3d5ab7e20941c5.tar.gz
re3-92434f01f1631d54207fb4395e3d5ab7e20941c5.tar.bz2
re3-92434f01f1631d54207fb4395e3d5ab7e20941c5.tar.lz
re3-92434f01f1631d54207fb4395e3d5ab7e20941c5.tar.xz
re3-92434f01f1631d54207fb4395e3d5ab7e20941c5.tar.zst
re3-92434f01f1631d54207fb4395e3d5ab7e20941c5.zip
Diffstat (limited to 'src/render/Lights.h')
-rw-r--r--src/render/Lights.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/render/Lights.h b/src/render/Lights.h
index ca926eb8..6fdd51de 100644
--- a/src/render/Lights.h
+++ b/src/render/Lights.h
@@ -1,4 +1,12 @@
+#pragma once
+
void SetLightsWithTimeOfDayColour(RpWorld *);
+RpWorld *LightsCreate(RpWorld *world);
+void LightsDestroy(RpWorld *world);
+void WorldReplaceNormalLightsWithScorched(RpWorld *world, float l);
+void WorldReplaceScorchedLightsWithNormal(RpWorld *world);
+void AddAnExtraDirectionalLight(RpWorld *world, float dirx, float diry, float dirz, float red, float green, float blue);
+void RemoveExtraDirectionalLights(RpWorld *world);
void SetAmbientAndDirectionalColours(float f);
void SetBrightMarkerColours(float f);
void ReSetAmbientAndDirectionalColours(void);
@@ -6,4 +14,5 @@ void DeActivateDirectional(void);
void ActivateDirectional(void);
void SetAmbientColours(void);
void SetAmbientColoursForPedsCarsAndObjects(void);
-void SetAmbientColoursToIndicateRoadGroup(int i); \ No newline at end of file
+void SetAmbientColoursToIndicateRoadGroup(int i);
+void SetAmbientColours(RwRGBAReal *color);