mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
23 lines
584 B
C++
23 lines
584 B
C++
#ifndef OPENW_MWCLASS_LIGHT4
|
|
#define OPENW_MWCLASS_LIGHT4
|
|
|
|
#include "../mwworld/registeredclass.hpp"
|
|
|
|
#include "esm4base.hpp"
|
|
|
|
namespace MWClass
|
|
{
|
|
class ESM4Light : public MWWorld::RegisteredClass<ESM4Light, ESM4Base<ESM4::Light>>
|
|
{
|
|
friend MWWorld::RegisteredClass<ESM4Light, ESM4Base<ESM4::Light>>;
|
|
|
|
ESM4Light();
|
|
|
|
public:
|
|
void insertObjectRendering(const MWWorld::Ptr& ptr, const std::string& model,
|
|
MWRender::RenderingInterface& renderingInterface) const override;
|
|
///< Add reference into a cell for rendering
|
|
};
|
|
}
|
|
#endif
|