Files
WickedEngine/Editor/SoundWindow.h
T
2019-10-07 19:25:24 +01:00

33 lines
559 B
C++

#pragma once
class wiGUI;
class wiWindow;
class wiLabel;
class wiCheckBox;
class wiSlider;
class wiColorPicker;
class wiButton;
class wiComboBox;
class wiTextInputField;
class SoundWindow
{
public:
SoundWindow(wiGUI* gui);
~SoundWindow();
wiECS::Entity entity = wiECS::INVALID_ENTITY;
void SetEntity(wiECS::Entity entity);
wiGUI* GUI;
wiWindow* soundWindow;
wiComboBox* reverbComboBox;
wiButton* addButton;
wiLabel* filenameLabel;
wiTextInputField* nameField;
wiButton* playstopButton;
wiCheckBox* loopedCheckbox;
wiSlider* volumeSlider;
};