File: HelpObject.pm

package info (click to toggle)
perlmoo 0.045
  • links: PTS
  • area: main
  • in suites: slink
  • size: 404 kB
  • ctags: 242
  • sloc: perl: 5,211; makefile: 111; sh: 77
file content (12 lines) | stat: -rw-r--r-- 214 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# This is a special object that contains help text, and that is
# queried for help as a last resort.

package HelpObject;
use strict;
use vars qw(@ISA);
use Thing;
@ISA=qw{Thing};

# Not much to this class. :-)

1