grendel-1.0.0a7/backup/
grendel-1.0.0a7/bin/
grendel-1.0.0a7/boards/
grendel-1.0.0a7/clans/
grendel-1.0.0a7/documentation/todo/
grendel-1.0.0a7/help/
grendel-1.0.0a7/logs/
grendel-1.0.0a7/players/
grendel-1.0.0a7/progs/
grendel-1.0.0a7/races/
grendel-1.0.0a7/src/contrib/
grendel-1.0.0a7/src/modules/speller/
grendel-1.0.0a7/src/modules/status/
grendel-1.0.0a7/src/tests/
grendel-1.0.0a7/src/tests/dunit/
package core;

{$R *.res}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST ON}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DESCRIPTION 'Grendel Core'}
{$RUNONLY}
{$IMPLICITBUILD OFF}

requires
	rtl;

contains
{$IFDEF WIN32}
	WinSock2,
	JclHookExcept,
	JclDebug,
	JclSysInfo,
	JclStrings,
	JclSysUtils,
	JclMath,
	JclResources,
{$ENDIF}
	dtypes,
	server,
	ansiio,
	LibXmlParser,
	RegExpr,
	md5,
	FastStrings,
	FastStringFuncs,
	area,
	bulletinboard,
	Channels,
	chars,
	commands,
	clan,
	clean,
	conns,
	constants,
	fight,
	fsys,
	gasmdef,
	gvm,
	magic,
	mudhelp,
	mudsystem,
	NameGen,
	player,
	progs,
	race,
	skills,
	strip,
	timers,
	update,
	util,
	modules,
	socket,
	console,
	events,
	debug;

end.