SBSPSS/Utils/MapEdit/CmdMsg.h

50 lines
1.1 KiB
C
Raw Normal View History

2001-03-01 18:28:20 +01:00
/********************/
/*** Cmd Messages ***/
/********************/
#ifndef __COMMAND_MESSAGES__
#define __COMMAND_MESSAGES__
enum CmdMsg
{
CmdMsg_None=0,
// Core
2001-03-22 21:49:58 +01:00
CmdMsg_ToggleSubView, // 1
CmdMsg_ToggleGrid, // 2
CmdMsg_Toggle2d, // 3
CmdMsg_ZoomIn, // 4
CmdMsg_ZoomOut, // 5
CmdMsg_ResetView, // 6
CmdMsg_SetLayer, // 7
CmdMsg_AddLayer, // 8
CmdMsg_DeleteLayer, // 9
2001-03-01 18:28:20 +01:00
// Generic
2001-03-22 21:49:58 +01:00
CmdMsg_SetMode, // 10
CmdMsg_Copy, // 11
CmdMsg_Paste, // 12
CmdMsg_SubViewLoad, // 13
CmdMsg_SubViewDelete, // 14
CmdMsg_SubViewUpdate, // 15
CmdMsg_SubViewSet, // 16
2001-03-29 19:59:01 +02:00
2001-03-01 18:28:20 +01:00
// TileLayer/TileBank
2001-03-22 21:49:58 +01:00
CmdMsg_MirrorX, // 17
CmdMsg_MirrorY, // 18
CmdMsg_SetColFlag, // 19
CmdMsg_ActiveBrushLeft, // 20
CmdMsg_ActiveBrushRight, // 21
2001-03-29 19:59:01 +02:00
// Thing
CmdMsg_ThingListDelete, // 23
2001-04-07 23:05:33 +02:00
CmdMsg_ThingListGoto, // 24
CmdMsg_ThingListSelect, // 25
CmdMsg_ThingLevelSelect, // 26
CmdMsg_ThingPosSelect, // 27
CmdMsg_ThingPosUp, // 28
CmdMsg_ThingPosDown, // 29
CmdMsg_ThingPosDelete, // 30
2001-03-01 18:28:20 +01:00
};
#endif
/*****************************************************************************/