Changeset 143 for trunk/Engine.pas


Ignore:
Timestamp:
May 29, 2023, 7:30:31 PM (11 months ago)
Author:
chronos
Message:

Removed U prefix from all units.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Engine.pas

    r140 r143  
    1 unit UEngine;
     1unit Engine;
    22
    33{$IFDEF DARWIN}{$modeswitch Objectivec1}{$ENDIF}
     
    88  {$IFDEF DARWIN}MacOSAll, CocoaAll, CocoaUtils,{$ENDIF}
    99  Classes, SysUtils, Graphics, Controls, ExtCtrls, Math, DateUtils, Types,
    10   URegistry, UMetaCanvas, Generics.Collections, Generics.Defaults, UMenu,
    11   UControls, UMetroPassenger, UColors, UView, URiver, UTrack, UCity, UGeometric,
    12   UTranslator, DOM, XMLRead, XMLWrite, UXMLUtils, UItems, FileUtil;
     10  RegistryEx, MetaCanvas, Generics.Collections, Generics.Defaults, Menu,
     11  BasicControls, MetroPassenger, Colors, View, River, Track, City, Geometric,
     12  Translator, DOM, XMLRead, XMLWrite, XML, Items, FileUtil;
    1313
    1414type
     
    432432
    433433uses
    434   ULanguages;
     434  Languages;
    435435
    436436resourcestring
     
    15781578  case Shape of
    15791579    ssSquare: begin
     1580      Points := nil;
    15801581      SetLength(Points, 4);
    15811582      Points[0] := Point(Position.X - Size div 2, Position.Y - Size div 2);
     
    27602761      Angle := Vector.GetAngle;
    27612762
     2763      Points := nil;
    27622764      SetLength(Points, 4);
    27632765      Points[0] := RotatePoint(Pos, Point(Pos.X - TrainSize div 2, Pos.Y - TrainSize div 3), Angle);
     
    43604362  FreeAndNil(Cities);
    43614363  FreeAndNil(ButtonBack);
     4364  FreeAndNil(Colors);
    43624365  inherited;
    43634366end;
Note: See TracChangeset for help on using the changeset viewer.