initial commit
This commit is contained in:
13
client/gui/props/PropertySectionWidget.h
Normal file
13
client/gui/props/PropertySectionWidget.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
namespace gui {
|
||||
|
||||
// 属性 dock 中可切换的「一节」的公共基类:便于以后扩展更多对象类型(灯光、相机等)
|
||||
class PropertySectionWidget : public QWidget {
|
||||
public:
|
||||
explicit PropertySectionWidget(QWidget* parent = nullptr) : QWidget(parent) {}
|
||||
};
|
||||
|
||||
} // namespace gui
|
||||
Reference in New Issue
Block a user