diff -r f4a0ec067601 -r b89235e401e5 hedgewars/uVariables.pas --- a/hedgewars/uVariables.pas Wed Nov 17 22:07:03 2010 +0300 +++ b/hedgewars/uVariables.pas Wed Nov 17 22:14:41 2010 +0300 @@ -1998,6 +1998,20 @@ playHeight, playWidth, leftX, rightX, topY, MaxHedgehogs: Longword; // idea is that a template can specify height/width. Or, a map, a height/width by the dimensions of the image. If the map has pixels near top of image, it triggers border. LandBackSurface: PSDL_Surface; digest: shortstring; + CurAmmoGear: PGear; + GearsList: PGear; + + CurrentTeam: PTeam; + PreviousTeam: PTeam; + CurrentHedgehog: PHedgehog; + TeamsArray: array[0..Pred(cMaxTeams)] of PTeam; + TeamsCount: Longword; + ClansArray: array[0..Pred(cMaxTeams)] of PClan; + ClansCount: Longword; + LocalClan: LongInt; // last non-bot, non-extdriven clan + LocalAmmo: LongInt; // last non-bot, non-extdriven clan's first team's ammo index + CurMinAngle, CurMaxAngle: Longword; + GameOver: boolean; procedure initModule;