DYTSrouce/src/entities/GroupEntity.h

16 lines
222 B
C
Raw Normal View History

2025-01-04 04:12:51 +00:00
#pragma once
#include <vector>
#include "entities/Entity.h"
class GroupEntity : public Entity {
Q_OBJECT
public:
explicit GroupEntity(const QString& name, QObject* parent = nullptr);
~GroupEntity();
protected:
};