mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 01:49:54 +00:00
30 lines
537 B
C++
30 lines
537 B
C++
#ifndef OPENCS_VIEW_LIGHTING_BRIGHT_H
|
|
#define OPENCS_VIEW_LIGHTING_BRIGHT_H
|
|
|
|
#include "lighting.hpp"
|
|
|
|
namespace Ogre
|
|
{
|
|
class Light;
|
|
}
|
|
|
|
namespace CSVRender
|
|
{
|
|
class LightingBright : public Lighting
|
|
{
|
|
osgViewer::View* mView;
|
|
|
|
public:
|
|
|
|
LightingBright();
|
|
|
|
virtual void activate (osgViewer::View* view,
|
|
const osg::Vec4f *defaultAmbient = 0);
|
|
|
|
virtual void deactivate();
|
|
|
|
virtual void setDefaultAmbient (const osg::Vec4f& colour);
|
|
};
|
|
}
|
|
|
|
#endif
|