hedgewars/uLandUtils.pas
branchtransitional_engine
changeset 16052 0fd23fc57947
parent 16050 6a3dc15b78b9
child 16055 ce4b50823a95
equal deleted inserted replaced
16051:2003b466b279 16052:0fd23fc57947
    17 procedure LandPixelSet(y, x: LongInt; value: Longword);
    17 procedure LandPixelSet(y, x: LongInt; value: Longword);
    18 function  LandPixelRow(row: LongInt): PLongwordArray;
    18 function  LandPixelRow(row: LongInt): PLongwordArray;
    19 
    19 
    20 implementation
    20 implementation
    21 uses uUtils, uConsts, uVariables, uTypes;
    21 uses uUtils, uConsts, uVariables, uTypes;
       
    22 
       
    23 {$linklib hwengine_future}
    22 
    24 
    23 function  create_empty_game_field(width, height: Longword): pointer; cdecl; external;
    25 function  create_empty_game_field(width, height: Longword): pointer; cdecl; external;
    24 procedure get_game_field_parameters(game_field: pointer; var width: LongInt; var height: LongInt; var play_width: LongInt; var play_height: LongInt); cdecl; external;
    26 procedure get_game_field_parameters(game_field: pointer; var width: LongInt; var height: LongInt; var play_width: LongInt; var play_height: LongInt); cdecl; external;
    25 procedure dispose_game_field(game_field: pointer); cdecl; external;
    27 procedure dispose_game_field(game_field: pointer); cdecl; external;
    26 
    28