aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex00/Pony.hpp
blob: 31a69f4e8e1f611a0eee437fdb17d0cc4f875e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PONY_HPP
# define PONY_HPP

class Pony
{
	public:
		Pony(int w, int s);
		void say_hello();
		void run();
	private:
		int weight;
		int max_speed;
};

#endif