mirror of https://github.com/zeldaret/botw.git
23 lines
404 B
C++
23 lines
404 B
C++
#pragma once
|
|
|
|
#include <environment/aglEnvObj.h>
|
|
|
|
namespace gsys {
|
|
|
|
class MaskedSpotLight;
|
|
class PointLight;
|
|
class SpotLight;
|
|
|
|
// TODO
|
|
template <typename T>
|
|
class LightRigObj {
|
|
public:
|
|
static const agl::env::TypeInfo* sTypeInfo;
|
|
};
|
|
|
|
extern template class LightRigObj<MaskedSpotLight>;
|
|
extern template class LightRigObj<PointLight>;
|
|
extern template class LightRigObj<SpotLight>;
|
|
|
|
} // namespace gsys
|