2000-11-24 23:34:20 +01:00
|
|
|
/**************/
|
|
|
|
/*** Export ***/
|
|
|
|
/**************/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include <Vector>
|
|
|
|
|
|
|
|
#include "Core.h"
|
|
|
|
#include "TileSet.h"
|
|
|
|
#include "Map.h"
|
|
|
|
|
|
|
|
#include "Export.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/*****************************************************************************/
|
|
|
|
/*****************************************************************************/
|
2000-12-11 22:29:59 +01:00
|
|
|
CExport::CExport(char *_Filename)
|
2000-11-24 23:34:20 +01:00
|
|
|
{
|
2000-12-11 22:29:59 +01:00
|
|
|
Filename=_Filename;
|
2000-11-24 23:34:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
CExport::~CExport()
|
|
|
|
{
|
|
|
|
fclose(File);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|