18 lines
289 B
C++
18 lines
289 B
C++
#include "CoverCfg.h"
|
|
#include "BaseConfig.h"
|
|
|
|
CoverCfg::CoverCfg()
|
|
{
|
|
m_cover_distance= 700000;
|
|
m_cover_speed=90;
|
|
m_cover_shift_speed=90;
|
|
m_CoverDirection= ONE_WAY2;
|
|
m_SupplyTime = 1000.0;
|
|
InitializeCriticalSection(&m_CS);
|
|
}
|
|
|
|
CoverCfg::~CoverCfg()
|
|
{
|
|
DeleteCriticalSection(&m_CS);
|
|
}
|