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, 0 insertions, 28 deletions
diff --git a/ee1301/wk6/lab5/Bug.hpp b/ee1301/wk6/lab5/Bug.hpp
deleted file mode 100644
index cc704ab..0000000
--- a/ee1301/wk6/lab5/Bug.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#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