Changeset 316 for trunk/UCore.pas
- Timestamp:
- Jun 19, 2024, 11:53:06 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UCore.pas
r315 r316 1 1 unit UCore; 2 3 {$mode delphi}4 2 5 3 interface … … 9 7 UGame, ApplicationInfo, PersistentForm, ScaleDPI, Translator, DOM, 10 8 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; 13 11 14 12 type … … 101 99 AutoSaveEnabled: Boolean; 102 100 ReopenLastFile: Boolean; 103 FormClients: T FPGObjectList<TFormClient>;101 FormClients: TObjectList<TFormClient>; 104 102 LocalClients: TClients; 105 103 ServerList: TServerList; … … 495 493 XMLConfig1.Filename := GetAppConfigDir(False) + 'Config.xml'; 496 494 ForceDirectories(GetAppConfigDir(False)); 497 FormClients := T FPGObjectList<TFormClient>.Create;495 FormClients := TObjectList<TFormClient>.Create; 498 496 ServerList := TServerList.Create; 499 497 end;
Note:
See TracChangeset
for help on using the changeset viewer.