mise en page

This commit is contained in:
lenovo
2022-12-09 13:39:46 +01:00
parent c91d23a5d4
commit fecde1a8b1
12 changed files with 104 additions and 45 deletions

View File

@@ -4,11 +4,15 @@
# include "ASpell.hpp"
class Fwoosh: public ASpell {
public:
Fwoosh(): ASpell("Fwoosh", "fwooshed") {};
~Fwoosh() {};
virtual ASpell * clone() const {
public:
Fwoosh(): ASpell("Fwoosh", "fwooshed")
{};
~Fwoosh()
{};
virtual ASpell * clone() const
{
return (new Fwoosh());
};
};