aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk6/lab5/Bug.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk6/lab5/Bug.hpp')
-rw-r--r--ee1301/wk6/lab5/Bug.hpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/ee1301/wk6/lab5/Bug.hpp b/ee1301/wk6/lab5/Bug.hpp
new file mode 100644
index 0000000..cc704ab
--- /dev/null
+++ b/ee1301/wk6/lab5/Bug.hpp
@@ -0,0 +1,28 @@
+#include <iostream>
+
+#ifndef BUG_H
+
+#define BUG_H
+class Bug {
+private:
+ int position, dir;
+public:
+ Bug() {
+ position=0;
+ dir=1;
+ }
+ Bug(int pos) {
+ position=pos;
+ dir=1;
+ }
+ void move() {
+ position+=dir;
+ }
+ void turn() {
+ dir*=-1;
+ }
+ void display() {
+ std::cout << "position = " << position << ", direction = " << dir << std::endl;
+ }
+};
+#endif