Changeset 86 for trunk/Game2048.lpr


Ignore:
Timestamp:
Jun 7, 2024, 12:47:11 PM (3 months ago)
Author:
chronos
Message:
  • Modified: Remove U prefix from unit names.
  • Modified: Used TFormEx for all forms for code simplification.
  • Fixed: Fullscreen mode switching error.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Game2048.lpr

    r82 r86  
    88  {$ENDIF}
    99  Interfaces, SysUtils,// this includes the LCL widgetset
    10   Forms, UGame, Common, UFormMain, UCore
     10  Forms, Game, Common, FormMain, Core
    1111  { you can add units after this };
    1212
     
    2828  Application.Scaled := True;
    2929  Application.Initialize;
    30   Application.CreateForm(TCore, Core);
    31   Application.CreateForm(TFormMain, FormMain);
     30  Application.CreateForm(TCore, Core.Core);
     31  Application.CreateForm(TFormMain, FormMain.FormMain);
    3232  Application.Run;
    3333end.
Note: See TracChangeset for help on using the changeset viewer.