Server.Mobiles.PlayerMobile.ComputeBaseLightLevels C# (CSharp) Method

ComputeBaseLightLevels() public method

public ComputeBaseLightLevels ( int &global, int &personal ) : void
global int
personal int
return void
        public override void ComputeBaseLightLevels(out int global, out int personal)
        {
            global = LightCycle.ComputeLevelFor(this);
            personal = this.LightLevel;
        }