hedgewars/uLand.pas
changeset 4403 0dfe26f48ec1
parent 4398 36d7e4b6ca81
child 4458 7351e6f1ee28
equal deleted inserted replaced
4402:54a78ec6aac4 4403:0dfe26f48ec1
    33 procedure GenMap;
    33 procedure GenMap;
    34 function  GenPreview: TPreview;
    34 function  GenPreview: TPreview;
    35 
    35 
    36 implementation
    36 implementation
    37 uses uConsole, uStore, uRandom, uLandObjects, uIO, uLandTexture, sysutils,
    37 uses uConsole, uStore, uRandom, uLandObjects, uIO, uLandTexture, sysutils,
    38      uVariables, uUtils, uCommands, Adler32;
    38      uVariables, uUtils, uCommands, Adler32, uDebug;
    39 
    39 
    40 operator=(const a, b: direction) c: Boolean;
    40 operator=(const a, b: direction) c: Boolean;
    41 begin
    41 begin
    42     c := (a.x = b.x) and (a.y = b.y);
    42     c := (a.x = b.x) and (a.y = b.y);
    43 end;
    43 end;