When you make updates, please try to record your changes in this file. That way the J3D community can better track the progess
of the engine and what functions were added/removed/changed (and why). Thanks
Hey at least its an attempt at keeping track of changes

[3-20-2000 Icestorm]
--------------------
Added resourcedirectory-loader-funtion with autoremove.
Used it to modify jeResource_MgrCreateDefault & Level_CreateResourceMgr.
Here a short samplecode:
{
	jeResourceMgr *	pResourceMgr;
	
	// create resourcemanager
	pResourceMgr = jeResource_MgrCreate();
	if( pResourceMgr == NULL )
		return NULL;

	// add "C:\test\Sounds" with alias "Sounds" to ResMgr
	jeResource_OpenDirectory(pResourceMgr, "C:\test\Sounds", "Sounds");

	// destroy resourcemanager and autoremove "Sounds"
	jeResource_MgrDestroy(&pResourceMgr);
}

Also I made some memoryleak-bugfixes, all tagged with "[MLB-ICE]"

 
[2-16-2000 Timothy Roff]
----------------
This was done earlier, just noting my changes:
several changes have been made to the VideoMgr in hopes of making it actually work :)
as of now it is 95% complete and should be finished soon

[2-3-2000]
------------
Added MP3 player functions in sound.h
jeMp3_LoadSoundDef
jeMp3_FreeSoundDef
and jeMp3_PlaySoundDef
currently jeMp3_PlaySoundDef does not work as the function "BOOL RenderFile( unsigned short * szFileName )" in Mp3Mgr.c
wants a filename and not an object in memory. The inclusision of these functions doesnt not cause the engine to crash unless
the mp3 functions are called so I included them in the CVS just in case someone could figure out the problem. If not, then I will just
go back to the old method.
Example usage of new code (for anyone interested in debuging):

jeMp3_Def	*def;
jeMp3		*mp3file;
jeVFile 		*VFile;
VFile = jeVFile_OpenNewSystem(NULL,JE_VFILE_TYPE_DOS,"music\\file.mp3",NULL,JE_VFILE_OPEN_READONLY);
if ( ! VFile )
	//error
def = jeMp3_LoadSoundDef(VFile);
mp3file = jeMp3_PlaySoundDef(def, 0, JE_FALSE);


[2-3-2000 Aaron Oneal (Incarnadine)]
------------------------------------
Updated all files included in Dennis Tierney's submission to merge with the CVS.


[2-4-2000 (Anatoly Sennov)]
-------------
1. Hard coded paths to DirectX 7 include and libs removed. You should define
DIRECTX_INCLUDE and DIRECTX_LIB environment variables to point to the correct
locations.
2. Tcl/Tk implementation removed. Use -P option to make CVS to remove the
empty /src/jet/Editor/TK directory


[2-4-2000 Aaron Oneal (Incarnadine)]
------------------------------------
Updated jeBSPNode.c to fix collision bug reported by DarkRift.
Updated Mp3Object.c, Spout.c, and DynamicLight.c.  The assert(Box != NULL) needed to be removed from the Collision function.  Box CAN be NULL.