SBSPSS/Utils/MapEdit/Export.cpp

30 lines
711 B
C++
Raw Normal View History

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"
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
CExport::CExport(char *Filename)
{
2000-11-28 00:07:07 +01:00
_splitpath(Filename,Drive,Path,Name,Ext);
2000-11-24 23:34:20 +01:00
}
/*****************************************************************************/
CExport::~CExport()
{
fclose(File);
}
/*****************************************************************************/