hedgewars/uVariables.pas
changeset 4437 05192cdbce9b
parent 4396 3cfd2e15464a
child 4465 743673c67d0c
equal deleted inserted replaced
4436:94c948a92759 4437:05192cdbce9b
    24     //userNick is in uChat
    24     //userNick is in uChat
    25     recordFileName  : shortstring = '';
    25     recordFileName  : shortstring = '';
    26     cReadyDelay     : Longword    = 0;
    26     cReadyDelay     : Longword    = 0;
    27     cLogfileBase    : shortstring = 'debug';
    27     cLogfileBase    : shortstring = 'debug';
    28 //////////////////////////
    28 //////////////////////////
    29     
    29 
       
    30     alsoShutdownFrontend: boolean = false;
       
    31 
    30     isCursorVisible : boolean;
    32     isCursorVisible : boolean;
    31     isTerminated    : boolean;
    33     isTerminated    : boolean;
    32     isInLag         : boolean;
    34     isInLag         : boolean;
    33     isPaused        : boolean;
    35     isPaused        : boolean;
    34 
    36 
  2100     trammoc: array[TAmmoStrId] of ansistring;   // caption of the weapon
  2102     trammoc: array[TAmmoStrId] of ansistring;   // caption of the weapon
  2101     trammod: array[TAmmoStrId] of ansistring;   // description of the weapon
  2103     trammod: array[TAmmoStrId] of ansistring;   // description of the weapon
  2102     trmsg:   array[TMsgStrId]  of ansistring;   // message of the event
  2104     trmsg:   array[TMsgStrId]  of ansistring;   // message of the event
  2103     trgoal:  array[TGoalStrId] of ansistring;   // message of the goal
  2105     trgoal:  array[TGoalStrId] of ansistring;   // message of the goal
  2104 
  2106 
  2105 
       
  2106 procedure initModule;
  2107 procedure initModule;
  2107 procedure freeModule;
  2108 procedure freeModule;
  2108 
  2109 
  2109 implementation
  2110 implementation
  2110 
  2111