Changeset 316 for trunk/UCore.pas


Ignore:
Timestamp:
Jun 19, 2024, 11:53:06 PM (4 months ago)
Author:
chronos
Message:
  • Modified: Code cleanup.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UCore.pas

    r315 r316  
    11unit UCore;
    2 
    3 {$mode delphi}
    42
    53interface
     
    97  UGame, ApplicationInfo, PersistentForm, ScaleDPI, Translator, DOM,
    108  RegistryEx, LastOpenedList, Theme, Registry, Menus,
    11   UFormClient, UPlayer, UGameServer, UGameClient, fgl, UServerList, UGameSystem,
    12   Graphics, UUnit;
     9  UFormClient, UPlayer, UGameServer, UGameClient, Generics.Collections,
     10  UServerList, UGameSystem, Graphics, UUnit;
    1311
    1412type
     
    10199    AutoSaveEnabled: Boolean;
    102100    ReopenLastFile: Boolean;
    103     FormClients: TFPGObjectList<TFormClient>;
     101    FormClients: TObjectList<TFormClient>;
    104102    LocalClients: TClients;
    105103    ServerList: TServerList;
     
    495493  XMLConfig1.Filename := GetAppConfigDir(False) + 'Config.xml';
    496494  ForceDirectories(GetAppConfigDir(False));
    497   FormClients := TFPGObjectList<TFormClient>.Create;
     495  FormClients := TObjectList<TFormClient>.Create;
    498496  ServerList := TServerList.Create;
    499497end;
Note: See TracChangeset for help on using the changeset viewer.