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.

22 lines
493 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
*@cbwu
*@brief 继承UGSceneEditorWnd类以获取UGEditToolPack3D方法
*/
#ifndef SCENEEDITORWND_H
#define SCENEEDITORWND_H
#include "SceneEditor/UGSceneEditorWnd.h"
#include "SceneEditor/UGEditToolPack3D.h"
using namespace UGC;
//暂时未使用
//继承UGSceneEditorWnd以获取其protected属性和方法
class SceneEditorWnd:public UGSceneEditorWnd
{
public:
SceneEditorWnd(UGScene3D *pScene3D);
UGEditToolPack3D* GetEditToolPack3D();
};
#endif // SCENEEDITORWND_H