23 lines
312 B
C
23 lines
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);
|
||
|
};
|
||
|
|
||
|
}
|