File: lion.h

package info (click to toggle)
matrem 1.0-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 788 kB
  • ctags: 928
  • sloc: cpp: 3,134; makefile: 77
file content (11 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#include "creature.h"

class lion : public creature
{
 public:
  lion(lion *parent=NULL);
  creature* newcreature() {return new lion(this);}
  void choosejob();
  char *name() {return "Lion";}
  char shortkey() {return 'l';}
};