Adding results enum for the game.
This commit is contained in:
parent
e8b6170797
commit
d35a92ed23
1 changed files with 7 additions and 1 deletions
|
@ -1,10 +1,16 @@
|
||||||
#[repr(u8)]
|
#[derive(PartialEq, Eq)]
|
||||||
pub enum Play {
|
pub enum Play {
|
||||||
Rock,
|
Rock,
|
||||||
Paper,
|
Paper,
|
||||||
Scissors,
|
Scissors,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum ResultPlay {
|
||||||
|
Win,
|
||||||
|
Draw,
|
||||||
|
Loss,
|
||||||
|
}
|
||||||
|
|
||||||
impl Into<char> for Play {
|
impl Into<char> for Play {
|
||||||
fn into(self) -> char {
|
fn into(self) -> char {
|
||||||
match self {
|
match self {
|
||||||
|
|
Loading…
Add table
Reference in a new issue