Files
WickedEngine/Editor/NameWindow.h
T
2020-04-14 21:49:42 +01:00

30 lines
393 B
C++

#pragma once
class wiGUI;
class wiWindow;
class wiLabel;
class wiCheckBox;
class wiSlider;
class wiComboBox;
class wiColorPicker;
class wiTextInputField;
class EditorComponent;
class NameWindow
{
public:
NameWindow(EditorComponent* editor);
~NameWindow();
wiECS::Entity entity;
void SetEntity(wiECS::Entity entity);
wiGUI* GUI;
wiWindow* window;
wiTextInputField* nameInput;
};