19 lines
420 B
C
19 lines
420 B
C
|
#pragma once
|
||
|
|
||
|
#include <QFrame>
|
||
|
#include <component.hpp>
|
||
|
|
||
|
#include "inspectors/inspectorbase.h"
|
||
|
|
||
|
class PlayerStartInspector : public InspectorBase
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit PlayerStartInspector(PlayerStart* pstart, QWidget* parent = nullptr);
|
||
|
|
||
|
InspectorBase* Clone(Component* component) override
|
||
|
{
|
||
|
return new PlayerStartInspector(static_cast<PlayerStart*>(component), parentWidget());
|
||
|
}
|
||
|
};
|