1/* 2% NomicMUD: A MUD server written in Prolog 3% Maintainer: Douglas Miles 4% Dec 13, 2035 5% 6% Bits and pieces: 7% 8% LogicMOO, Inform7, FROLOG, Guncho, PrologMUD and Marty's Prolog Adventure Prototype 9% 10% Copyright (C) 2004 Marty White under the GNU GPL 11% Sept 20,1999 - Douglas Miles 12% July 10,1996 - John Eikenberry 13% 14% Logicmoo Project changes: 15% 16% Main file. 17% 18*/ 19 20:-module(adv_test, [test_adv/0]). 21 22%:- ensure_loaded(adv_main). 23 24test_adv :- 25 adventure_init. 26 27:- initialization(test_adv,main).