First version using OOP

This commit is contained in:
2025-01-24 16:42:13 -03:00
parent 8df1ae8f25
commit 8044fa3c32
12 changed files with 161 additions and 0 deletions

17
Animal.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include "Animal.hpp"
#include <iostream>
using namespace std;
Animal::Animal(){
}
Animal::~Animal(){
}
void Animal::acorda(){
cout << "Só acorda, sem fazer barulho" << endl;
}