26 lines
306 B
C++
26 lines
306 B
C++
#include "precompile.h"
|
|
|
|
#include "mt/MapMode.h"
|
|
|
|
IMPL_TABLE(mt::MapMode)
|
|
|
|
|
|
namespace mt
|
|
{
|
|
|
|
void MapMode::Init1()
|
|
{
|
|
#ifdef MYDEBUG
|
|
if (mapMode() == 201) {
|
|
mapMode_ = kCircuitMatchMode;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
bool MapMode::IsOpen() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
}
|