1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 21:49:56 +00:00
openmw-tes3mp/apps/opencs/view/render/lightingbright.hpp
2020-10-16 22:18:54 +04:00

28 lines
491 B
C++

#ifndef OPENCS_VIEW_LIGHTING_BRIGHT_H
#define OPENCS_VIEW_LIGHTING_BRIGHT_H
#include "lighting.hpp"
namespace osg
{
class Light;
class Group;
}
namespace CSVRender
{
class LightingBright : public Lighting
{
public:
LightingBright();
void activate (osg::Group* rootNode, bool /*isExterior*/) override;
void deactivate() override;
osg::Vec4f getAmbientColour(osg::Vec4f* defaultAmbient) override;
};
}
#endif