blob: 571414c0e85aa325ff3e6ab3c1063a0a92396353 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Pony.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/13 09:26:16 by charles #+# #+# */
/* Updated: 2020/04/13 09:27:49 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PONY_HPP
# define PONY_HPP
class Pony
{
public:
Pony(int weight, int maxSpeed);
void sayHello();
void run();
private:
int m_weight;
int m_maxSpeed;
};
#endif
|