summaryrefslogtreecommitdiffstats
path: root/src/objects/DummyObject.cpp
blob: d5805073a0f88f2f208c6d485e5472c9cc2106dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "common.h"

#include "DummyObject.h"
#include "Pools.h"

CDummyObject::CDummyObject(CObject *obj)
{
	SetModelIndexNoCreate(obj->GetModelIndex());
	if(obj->m_rwObject)
		AttachToRwObject(obj->m_rwObject);
	obj->DetachFromRwObject();
	m_level = obj->m_level;
}