Changeset 4 for trunk/UGame.pas


Ignore:
Timestamp:
Feb 8, 2014, 11:35:27 PM (11 years ago)
Author:
chronos
Message:
  • Added: Main menu with game control actions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UGame.pas

    r3 r4  
    3434    procedure Paint(Canvas: TCanvas; Rect: TRect);
    3535    constructor Create;
     36    destructor Destroy; override;
    3637    procedure Init(Size: TPoint);
    3738  end;
     
    200201end;
    201202
     203destructor TMap.Destroy;
     204begin
     205  Init(0, 0);
     206  inherited Destroy;
     207end;
     208
    202209procedure TMap.Init(Size: TPoint);
    203210var
Note: See TracChangeset for help on using the changeset viewer.