12 lines
195 B
C++
12 lines
195 B
C++
#pragma once
|
|
|
|
#include "AForm.hpp"
|
|
|
|
class ShrubberyCreationForm : public AForm {
|
|
public :
|
|
ShrubberyCreationForm();
|
|
ShrubberyCreationForm(std::string name);
|
|
|
|
void executeAction() const;
|
|
};
|