US02: Make it possible for the user to assign a race to a horse

This commit is contained in:
2020-03-18 20:39:02 +01:00
parent 01268263de
commit 98d555327e
10 changed files with 88 additions and 23 deletions

View File

@@ -5,6 +5,14 @@ export class Horse {
public description: string,
public score: number,
public birthday: Date,
public race: ERace,
public owner: number) {
}
}
enum ERace {
ARABIAN,
MORGAN,
PAINT,
APPALOOSA
}