mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
18 lines
501 B
C++
18 lines
501 B
C++
#include "LevelEditor.h"
|
|
|
|
void LevelEditor::OpenItemProperties()
|
|
{
|
|
}
|
|
|
|
void LevelEditor::CreateItemToolBar(Bar& bar)
|
|
{
|
|
bar.Add("Add", CtrlImg::Add(), THISBACK(OnItemAdd));
|
|
bar.Add("Remove", CtrlImg::Remove(), THISBACK(OnItemRemove));
|
|
bar.Add("Properties", CtrlImg::smallcheck(), THISBACK(OnItemProperties));
|
|
}
|
|
|
|
void LevelEditor::CreateLayerToolBar(Bar& bar)
|
|
{
|
|
bar.Add("Add", CtrlImg::Add(), THISBACK(OnLayerAdd));
|
|
bar.Add("Remove", CtrlImg::Remove(), THISBACK(OnLayerRemove));
|
|
}
|