Files
WickedEngine/Editor/DecalWindow.h
T
2020-04-13 22:19:29 +01:00

27 lines
343 B
C++

#pragma once
class wiGUI;
class wiWindow;
class wiLabel;
class wiCheckBox;
class wiSlider;
class EditorComponent;
class DecalWindow
{
public:
DecalWindow(EditorComponent* editor);
~DecalWindow();
wiGUI* GUI;
wiECS::Entity entity;
void SetEntity(wiECS::Entity entity);
wiTextInputField* decalNameField;
wiWindow* decalWindow;
};