blob: f31f6ed841398b371d94289f41b5331a9ca28775 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001// MorgenGrauen MUDlib
2//
3// util/testedit.c -- Tragbarer Editor
4//
5// $Id: testedit.c 6371 2007-07-17 22:46:50Z Zesstra $
6#pragma strict_types
7#pragma save_types
8#pragma pedantic
9#pragma range_check
10#pragma no_clone
11
12inherit "/std/thing";
13inherit "/std/util/ex";
14
15#include <properties.h>
16
17void create()
18{
19 ::create();
20 AddId("ex");
21 SetProp(P_NAME, "Editor");
22 SetProp(P_SHORT, "Ein Testeditor");
23 SetProp(P_LONG, "Testeditor: Kommando: ex\n");
24 AddCmd("ex", "ex");
25}