/* vi: set ts=2: * * * Eressea PB(E)M host Copyright (C) 1998-2003 * Christian Schlittchen (corwin@amber.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de) * Henning Peters (faroul@beyond.kn-bremen.de) * Enno Rehling (enno@eressea-pbem.de) * Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de) * * This program may not be used, modified or distributed without * prior permission by the authors of Eressea. */ #include #include "fleechance.h" #include attrib_type at_fleechance = { "fleechance", NULL, NULL, NULL, NULL, NULL, }; attrib * make_fleechance(float fleechance) { attrib * a = a_new(&at_fleechance); a->data.flt = fleechance; return a; } void init_fleechance(void) { at_register(&at_fleechance); }