mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-06 06:33:39 +00:00
31 lines
712 B
C
31 lines
712 B
C
#ifndef UNDOCOMMANDS
|
|
#define UNDOCOMMANDS
|
|
|
|
#include "CCreateInstanceCommand.h"
|
|
#include "CCloneSelectionCommand.h"
|
|
#include "CPasteNodesCommand.h"
|
|
|
|
#include "CTranslateNodeCommand.h"
|
|
#include "CRotateNodeCommand.h"
|
|
#include "CScaleNodeCommand.h"
|
|
|
|
#include "CSelectNodeCommand.h"
|
|
#include "CDeselectNodeCommand.h"
|
|
#include "CClearSelectionCommand.h"
|
|
#include "CSelectAllCommand.h"
|
|
#include "CInvertSelectionCommand.h"
|
|
#include "CDeleteSelectionCommand.h"
|
|
|
|
#include "CEditScriptPropertyCommand.h"
|
|
#include "CResizeScriptArrayCommand.h"
|
|
#include "CChangeLayerCommand.h"
|
|
|
|
#include "CAddLinkCommand.h"
|
|
#include "CDeleteLinksCommand.h"
|
|
#include "CEditLinkCommand.h"
|
|
|
|
#include "EUndoCommand.h"
|
|
|
|
#endif // UNDOCOMMANDS
|
|
|