-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathherbedit.h
44 lines (40 loc) · 1.71 KB
/
herbedit.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**************************************************************************/
// herbedit.h - OLC based herb editor, Kerenos.
/***************************************************************************
* The Dawn of Time v1.69r (c)1997-2004 Michael Garratt *
* >> A number of people have contributed to the Dawn codebase, with the *
* majority of code written by Michael Garratt - www.dawnoftime.org *
* >> To use this source code, you must fully comply with the dawn license *
* in licenses.txt... In particular, you may not remove this copyright *
* notice. *
**************************************************************************/
#ifndef HERBEDIT_H
#define HERBEDIT_H
DECLARE_OLC_FUN( herbedit_name );
DECLARE_OLC_FUN( herbedit_season );
DECLARE_OLC_FUN( herbedit_month );
DECLARE_OLC_FUN( herbedit_sector );
DECLARE_OLC_FUN( herbedit_continent );
DECLARE_OLC_FUN( herbedit_show );
DECLARE_OLC_FUN( herbedit_timefield );
DECLARE_OLC_FUN( herbedit_area );
DECLARE_OLC_FUN( herbedit_vnum );
DECLARE_OLC_FUN( herbedit_difficulty );
const struct olc_cmd_type herbedit_table[] =
{
// { COMMAND FUNCTION }
{ "area", herbedit_area },
{ "commands", show_commands },
{ "continent", herbedit_continent },
{ "difficulty", herbedit_difficulty },
{ "month", herbedit_month },
{ "name", herbedit_name },
{ "season", herbedit_season },
{ "sector", herbedit_sector },
{ "show", herbedit_show },
{ "time", herbedit_timefield },
{ "vnum", herbedit_vnum },
{ "?", show_help },
{ NULL, 0, }
};
#endif // HERBEDIT_H