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

33 lines
478 B
C++

#pragma once
class wiGUI;
class wiWindow;
class wiLabel;
class wiCheckBox;
class wiSlider;
class wiComboBox;
class wiColorPicker;
class EditorComponent;
class IKWindow
{
public:
IKWindow(EditorComponent* editor);
~IKWindow();
wiECS::Entity entity;
void SetEntity(wiECS::Entity entity);
wiGUI* GUI;
wiWindow* window;
wiButton* createButton;
wiComboBox* targetCombo;
wiCheckBox* disabledCheckBox;
wiSlider* chainLengthSlider;
wiSlider* iterationCountSlider;
};