mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
Added modified version of wxJavaScript. Added Atlas script interface. Rewrote the Map sidebar in JS. This was SVN commit r5144.
16 lines
343 B
C++
16 lines
343 B
C++
#include "../Common/Sidebar.h"
|
|
|
|
struct ObjectSidebarImpl;
|
|
class ObjectSidebar : public Sidebar
|
|
{
|
|
public:
|
|
ObjectSidebar(ScenarioEditor& scenarioEditor, wxWindow* sidebarContainer, wxWindow* bottomBarContainer);
|
|
~ObjectSidebar();
|
|
void SetObjectFilter(int type);
|
|
|
|
protected:
|
|
virtual void OnFirstDisplay();
|
|
|
|
private:
|
|
ObjectSidebarImpl* p;
|
|
};
|