forked from mirrors/0ad
397a350e45
Territories: Fixed memory leaks. Atlas: New section-toolbar. Fixed colour of brush grid. Moved open/save into File menu. Added 3D-ish lighting control. Added 'busy' notifications. This was SVN commit r4079.
19 lines
336 B
C++
19 lines
336 B
C++
#include "../Common/Sidebar.h"
|
|
|
|
#include "General/Observable.h"
|
|
|
|
class VariableListBox;
|
|
|
|
class EnvironmentSidebar : public Sidebar
|
|
{
|
|
public:
|
|
EnvironmentSidebar(wxWindow* sidebarContainer, wxWindow* bottomBarContainer);
|
|
|
|
protected:
|
|
virtual void OnFirstDisplay();
|
|
|
|
private:
|
|
VariableListBox* m_SkyList;
|
|
ObservableConnection m_Conn;
|
|
};
|