/* /lib/props/ambiance.c
* From the Dead Souls V LPC Library
* Ambiance is natural light in an area
* Created by Descartes of Borg 961221
* Version: @(#) ambiance.c 1.1@(#)
* Last modified: 96/12/22
*/
private int AmbientLight = 0;
int GetAmbientLight() {
return AmbientLight;
}
static int SetAmbientLight(int x) {
return (AmbientLight = x);
}