mirror of https://github.com/AxioDL/metaforce.git
16 lines
192 B
C++
16 lines
192 B
C++
|
#ifndef __URDE_CACTORLIGHTS_HPP__
|
||
|
#define __URDE_CACTORLIGHTS_HPP__
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
|
||
|
class CActorLights
|
||
|
{
|
||
|
public:
|
||
|
void ActivateLights() const;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CACTORLIGHTS_HPP__
|