30 lines
711 B
C++
30 lines
711 B
C++
/**************/
|
|
/*** Export ***/
|
|
/**************/
|
|
|
|
#include "stdafx.h"
|
|
#include <Vector>
|
|
|
|
#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);
|
|
}
|
|
|
|
/*****************************************************************************/
|