aboutsummaryrefslogtreecommitdiff
path: root/cpp01/ex00/Pony.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp01/ex00/Pony.hpp')
-rw-r--r--cpp01/ex00/Pony.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/cpp01/ex00/Pony.hpp b/cpp01/ex00/Pony.hpp
new file mode 100644
index 0000000..31a69f4
--- /dev/null
+++ b/cpp01/ex00/Pony.hpp
@@ -0,0 +1,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