Changeset 423


Ignore:
Timestamp:
Feb 7, 2011, 9:21:53 PM (12 years ago)
Author:
sam
Message:

Add more GetName() implementations.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/monsterz/board.h

    r352 r423  
    3434    virtual ~Board();
    3535
     36    char const *GetName() { return "<board>"; }
     37
    3638protected:
    3739    virtual void TickGame(float deltams);
  • trunk/monsterz/interface.h

    r331 r423  
    2727    virtual ~Interface();
    2828
     29    char const *GetName() { return "<interface>"; }
     30
    2931protected:
    3032    virtual void TickGame(float deltams);
  • trunk/monsterz/mash.h

    r312 r423  
    2828    virtual ~Mash();
    2929
     30    char const *GetName() { return "<mash>"; }
     31
    3032    void AddPiece(Piece *piece);
    3133    int IsDead() const;
  • trunk/monsterz/thumbs.h

    r348 r423  
    2727    virtual ~Thumbs();
    2828
     29    char const *GetName() { return "<thumbs>"; }
     30
    2931    void SetMax(int npieces);
    3032    void AddCount(int id, int count);
Note: See TracChangeset for help on using the changeset viewer.