MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | // 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 | |
| 12 | inherit "/std/thing"; |
| 13 | inherit "/std/util/ex"; |
| 14 | |
| 15 | #include <properties.h> |
| 16 | |
| 17 | void 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 | } |