2007-12-21 21:31:58 +01:00
|
|
|
(*
|
|
|
|
* CDDL HEADER START
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
* Common Development and Distribution License, Version 1.0 only
|
|
|
|
* (the "License"). You may not use this file except in compliance
|
|
|
|
* with the License.
|
|
|
|
*
|
|
|
|
* You can obtain a copy of the license at
|
|
|
|
* http://www.opensource.org/licenses/cddl1.php.
|
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
* and limitations under the License.
|
|
|
|
*
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
* file and include the License file at
|
|
|
|
* http://www.opensource.org/licenses/cddl1.php. If applicable,
|
|
|
|
* add the following below this CDDL HEADER, with the fields enclosed
|
|
|
|
* by brackets "[]" replaced with your own identifying * information:
|
|
|
|
* Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
*
|
|
|
|
* CDDL HEADER END
|
|
|
|
*
|
|
|
|
*
|
2009-05-18 00:33:59 +02:00
|
|
|
* Portions Copyright 2009 Andreas Schneider
|
2007-12-21 21:31:58 +01:00
|
|
|
*)
|
|
|
|
program CentrED;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
2009-09-02 03:21:39 +02:00
|
|
|
Forms, LResources, lnetvisual, LazOpenGLContext, UdmNetwork, UfrmMain,
|
|
|
|
UfrmLogin, UfrmInitialize, UfrmAccountControl, virtualtreeview_package,
|
|
|
|
UfrmEditAccount, UfrmDrawSettings, UfrmBoundaries, UfrmElevateSettings,
|
|
|
|
UOverlayUI, UResourceManager, UfrmConfirmation, UfrmMoveSettings, UfrmAbout,
|
|
|
|
UfrmHueSettings, UfrmRadar, UfrmLargeScaleCommand, UfrmVirtualLayer,
|
|
|
|
UfrmFilter, UfrmTileInfo, UGUIPlatformUtils, UPlatformTypes,
|
|
|
|
UfrmRegionControl, UPackets, UPacketHandlers, UAdminHandling, UGameResources,
|
|
|
|
ULandscape, UfrmToolWindow;
|
2008-08-25 17:33:38 +02:00
|
|
|
|
2009-08-31 22:24:54 +02:00
|
|
|
{$IFDEF WINDOWS}{$R CentrED.rc}{$ENDIF}
|
2007-12-21 21:31:58 +01:00
|
|
|
|
|
|
|
begin
|
2009-08-31 22:24:54 +02:00
|
|
|
{$I CentrED.lrs}
|
2007-12-21 21:31:58 +01:00
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TdmNetwork, dmNetwork);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|