mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
21 lines
259 B
C++
21 lines
259 B
C++
|
|
|
|
#include <StdAfx.h>
|
|
#include "TurbineCell.h"
|
|
|
|
TurbineCell::TurbineCell()
|
|
{
|
|
#if PRE_TOD_DATA_FILES
|
|
LoadFile("cell.dat");
|
|
#else
|
|
LoadFile("client_cell_1.dat");
|
|
#endif
|
|
|
|
DATDisk::pCell = m_pDATDisk;
|
|
}
|
|
|
|
TurbineCell::~TurbineCell()
|
|
{
|
|
DATDisk::pCell = NULL;
|
|
}
|
|
|