diff options
author | aap <aap@papnet.eu> | 2020-08-19 14:36:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 14:36:38 +0200 |
commit | 76fe1247c86873fa548c85ae8598efd4ce1947c2 (patch) | |
tree | 0d7d5e42a8e92841af0f89dc577eb0888831fd9f /src/rw/Lights.h | |
parent | Island loading cleanup and fix (diff) | |
parent | Merge branch 'master' of github.com:gtamodding/re3 (diff) | |
download | re3-76fe1247c86873fa548c85ae8598efd4ce1947c2.tar re3-76fe1247c86873fa548c85ae8598efd4ce1947c2.tar.gz re3-76fe1247c86873fa548c85ae8598efd4ce1947c2.tar.bz2 re3-76fe1247c86873fa548c85ae8598efd4ce1947c2.tar.lz re3-76fe1247c86873fa548c85ae8598efd4ce1947c2.tar.xz re3-76fe1247c86873fa548c85ae8598efd4ce1947c2.tar.zst re3-76fe1247c86873fa548c85ae8598efd4ce1947c2.zip |
Diffstat (limited to '')
-rw-r--r-- | src/rw/Lights.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rw/Lights.h b/src/rw/Lights.h index 6fdd51de..b296816b 100644 --- a/src/rw/Lights.h +++ b/src/rw/Lights.h @@ -1,5 +1,11 @@ #pragma once +extern RpLight *pAmbient; +extern RpLight *pDirect; +extern RpLight *pExtraDirectionals[4]; +extern int LightStrengths[4]; +extern int NumExtraDirLightsInWorld; + void SetLightsWithTimeOfDayColour(RpWorld *); RpWorld *LightsCreate(RpWorld *world); void LightsDestroy(RpWorld *world); |