You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
269 B
C++
15 lines
269 B
C++
2 years ago
|
#include "sceneeditorwnd.h"
|
||
|
#include "Scene/UGScene3D.h"
|
||
|
|
||
|
|
||
|
SceneEditorWnd::SceneEditorWnd(UGScene3D *pScene3D):UGSceneEditorWnd(pScene3D) //调用父类的构造函数
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
UGEditToolPack3D *SceneEditorWnd::GetEditToolPack3D()
|
||
|
{
|
||
|
return &this->m_EditToolPack3D;
|
||
|
|
||
|
}
|