Ignore:
Timestamp:
Oct 4, 2019, 11:57:05 PM (5 years ago)
Author:
chronos
Message:
  • Added: Configurable speed of animations.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormMain.lfm

    r8 r11  
    2020      Caption = 'Game'
    2121      object MenuItemNew: TMenuItem
    22         Action = AGameNew
     22        Action = Core.AGameNew
     23      end
     24      object MenuItem1: TMenuItem
     25        Action = Core.ASettings
    2326      end
    2427      object MenuItemExit: TMenuItem
    25         Action = AExit
     28        Action = Core.AExit
    2629      end
    2730    end
     
    2932      Caption = 'Help'
    3033      object MenuItemAbout: TMenuItem
    31         Action = AAbout
     34        Action = Core.AAbout
    3235      end
    3336    end
    3437  end
    35   object ActionList1: TActionList
    36     left = 144
     38  object TimerDraw: TTimer
     39    Interval = 20
     40    OnTimer = TimerDrawTimer
     41    left = 138
    3742    top = 152
    38     object AGameNew: TAction
    39       Caption = 'New...'
    40       OnExecute = AGameNewExecute
    41     end
    42     object AExit: TAction
    43       Caption = 'Exit'
    44       OnExecute = AExitExecute
    45     end
    46     object AAbout: TAction
    47       Caption = 'About'
    48       OnExecute = AAboutExecute
    49     end
    5043  end
    5144end
Note: See TracChangeset for help on using the changeset viewer.