22 lines
238 B
C++
22 lines
238 B
C++
|
|
#include "CreateRoomBase.h"
|
||
|
|
#include "Define.h"
|
||
|
|
#include "Types.h"
|
||
|
|
|
||
|
|
CreateRoomBase::CreateRoomBase()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
CreateRoomBase::~CreateRoomBase()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
bool CreateRoomBase::init()
|
||
|
|
{
|
||
|
|
if (!TipNode::init())
|
||
|
|
{
|
||
|
|
return false;
|
||
|
|
};
|
||
|
|
|
||
|
|
return true;
|
||
|
|
}
|