hedgewars/uAIAmmoTests.pas
changeset 49 3afe33c1cf06
parent 48 0f396d0c429d
child 51 b6e3ae05857f
equal deleted inserted replaced
48:0f396d0c429d 49:3afe33c1cf06
    47 const AmmoTests: array[TAmmoType] of
    47 const AmmoTests: array[TAmmoType] of
    48                     record
    48                     record
    49                     Test: TAmmoTestProc;
    49                     Test: TAmmoTestProc;
    50                     Flags: Longword;
    50                     Flags: Longword;
    51                     end = (
    51                     end = (
    52                     ( Test: nil;//TestGrenade;
    52                     ( Test: TestGrenade;
    53                       Flags: ctfNotFull;
    53                       Flags: ctfNotFull;
    54                     ),
    54                     ),
    55                     ( Test: nil;//TestBazooka;
    55                     ( Test: TestBazooka;
    56                       Flags: ctfNotFull or ctfBreach;
    56                       Flags: ctfNotFull or ctfBreach;
    57                     ),
    57                     ),
    58                     ( Test: nil;
    58                     ( Test: nil;
    59                       Flags: 0;
    59                       Flags: 0;
    60                     ),
    60                     ),