aboutsummaryrefslogtreecommitdiff
path: root/src/computer.rs
diff options
context:
space:
mode:
authorGuillaume Pasquet <guillaume.pasquet@eggplant.io>2019-11-12 14:22:19 +0100
committerGuillaume Pasquet <guillaume.pasquet@eggplant.io>2019-11-12 14:22:19 +0100
commit8fa3fa881bc3b954e136295fe6cc7022737ae9db (patch)
tree996c5f1aa20bec283504190d5c372e51b02be085 /src/computer.rs
parentec671aa9b56c53d76ce310f0772ee05c97064d3f (diff)
Refactor all the things!
Diffstat (limited to 'src/computer.rs')
-rw-r--r--src/computer.rs36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/computer.rs b/src/computer.rs
deleted file mode 100644
index a8b9b3e..0000000
--- a/src/computer.rs
+++ /dev/null
@@ -1,36 +0,0 @@
-pub struct Computer {
- level: i32,
- difficulty: i32,
-}
-
-pub trait Enemy {
- fn new(level: i32, difficulty: i32) -> Self;
-
- fn action(&self) -> (i32, i32);
-
- fn level_up(&mut self);
-
- fn stats(&self) -> String;
-}
-
-impl Enemy for Computer {
- fn new(level: i32, difficulty: i32) -> Computer {
- Computer {
- level: level,
- difficulty: difficulty
- }
- }
-
- fn action(&self) -> (i32, i32) {
- (self.level, self.difficulty)
- }
-
- fn level_up(&mut self) {
- self.level += 1;
- self.difficulty += 3;
- }
-
- fn stats(&self) -> String {
- format!("level: {} difficulty: {}", self.level, self.difficulty)
- }
-}