/**************/ /*** Export ***/ /**************/ #include "stdafx.h" #include #include "Core.h" #include "TileSet.h" #include "Map.h" #include "Export.h" #include "utils.h" /*****************************************************************************/ /*****************************************************************************/ /*****************************************************************************/ CExport::CExport(char *Filename) { _splitpath(Filename,Drive,Path,Name,Ext); } /*****************************************************************************/ CExport::~CExport() { fclose(File); } /*****************************************************************************/