blob: a8b9b3e421676025543e84ac9b0cabd241b12cea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
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)
}
}
|