23 lines
No EOL
312 B
C++
23 lines
No EOL
312 B
C++
#pragma once
|
|
|
|
#include "Panel.h"
|
|
|
|
#include "Scene/Entity.h"
|
|
|
|
namespace Light {
|
|
|
|
class PropertiesPanel : public Panel
|
|
{
|
|
private:
|
|
Entity m_EntityContext;
|
|
|
|
public:
|
|
PropertiesPanel() = default;
|
|
~PropertiesPanel() = default;
|
|
|
|
void OnUserInterfaceUpdate();
|
|
|
|
void SetEntityContext(Entity entity);
|
|
};
|
|
|
|
} |