mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-08-11 06:29:08 +00:00
19 lines
364 B
C++
19 lines
364 B
C++
#ifndef CLIGHTPARAMETERS_H
|
|
#define CLIGHTPARAMETERS_H
|
|
|
|
#include "Core/Resource/CGameArea.h"
|
|
#include "Core/Resource/Script/IProperty.h"
|
|
|
|
class CLightParameters
|
|
{
|
|
CPropertyStruct *mpStruct;
|
|
EGame mGame;
|
|
|
|
public:
|
|
CLightParameters(CPropertyStruct *pStruct, EGame game);
|
|
~CLightParameters();
|
|
int LightLayerIndex();
|
|
};
|
|
|
|
#endif // CLIGHTPARAMETERS_H
|