コード例 #1
0
ファイル: PathTool.cs プロジェクト: Karkus476/supertux-editor
 private void OnShiftRight(object o, EventArgs args)
 {
     Command command = new PathShiftCommand("Path shifted forward", path, 1);
     command.Do();
     UndoManager.AddCommand(command);
     Redraw();
 }
コード例 #2
0
ファイル: PathTool.cs プロジェクト: Karkus476/supertux-editor
 private void OnShiftLeft(object o, EventArgs args)
 {
     Command command = new PathShiftCommand("Path shifted backwards", path, -1);
     command.Do();
     UndoManager.AddCommand(command);
     Redraw();
 }