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