1
0

Added tie state to model

This commit is contained in:
2020-05-13 13:42:44 -04:00
parent 3aec16246a
commit 2ee2a289ee

View File

@@ -1,5 +1,5 @@
export interface Game { export interface Game {
playerChoice: string, playerChoice: string,
computerChoice: string, computerChoice: string,
result: 'win' | 'lose' | 'error'; result: 'win' | 'lose' | 'tie' | 'error';
} }