17 lines
200 B
C#
17 lines
200 B
C#
namespace RobotNet.MapShares.Enums;
|
|
|
|
public enum ControlState
|
|
{
|
|
Undo,
|
|
Save,
|
|
FitScreen,
|
|
ShowName,
|
|
ShowGrid,
|
|
ShowMapSlam,
|
|
ZoomIn,
|
|
ZoomOut,
|
|
Delete,
|
|
CheckMap
|
|
}
|
|
|