~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to src/tools/tConsole.h

  • Committer: Voodoo
  • Date: 2011-07-28 18:46:18 UTC
  • mfrom: (563.24.161 merge)
  • Revision ID: voodoo-20110728184618-0djbrm75ftd07c4v
merge -r 1285..1297 lp:armagetronad/0.2.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
 
79
79
    virtual ~tConsole();
80
80
 
81
 
    tConsole & Print(tString s);
 
81
    tConsole & Print(tString const & s);
82
82
 
83
83
    template<class T> tConsole & operator<<(const T&x){
84
84
        tColoredString s;
105
105
private:
106
106
    static tConsole *s_betterConsole;
107
107
 
 
108
    void PrintLine(tString const & s, int repetitions);
108
109
    virtual tConsole & DoPrint(const tString& s);
109
110
    virtual void DoCenterDisplay(const tString& s,REAL timeout=5,REAL r=1,REAL g=1,REAL b=1);
110
111
};