mud/lib/verbs/common/include/speak.h
2020-09-06 05:43:07 -07:00

16 lines
389 B
C

#ifndef l_speak_h
#define l_speak_h
static void create();
mixed can_speak();
mixed can_speak_in_wrd(string str);
mixed can_speak_str(string str);
mixed can_speak_in_wrd_str(string word, string str);
mixed do_speak();
mixed do_speak_in_wrd(string str);
mixed do_speak_str(string str);
mixed do_speak_in_wrd_str(string word, string str);
string GetHelp(string str);
#endif /* l_speak_h */