diff --git a/pac-man-board-game/ClientApp/src/game/character.ts b/pac-man-board-game/ClientApp/src/game/character.ts index d2f4cf9..cc50190 100644 --- a/pac-man-board-game/ClientApp/src/game/character.ts +++ b/pac-man-board-game/ClientApp/src/game/character.ts @@ -47,10 +47,6 @@ export class PacMan extends Character { this.box = new Box(box); } - public stealFrom(other: PacMan): void { - - } - } export class Ghost extends Character { diff --git a/pac-man-board-game/ClientApp/src/game/player.ts b/pac-man-board-game/ClientApp/src/game/player.ts new file mode 100644 index 0000000..7ef099f --- /dev/null +++ b/pac-man-board-game/ClientApp/src/game/player.ts @@ -0,0 +1,19 @@ +import {Character, Ghost, PacMan} from "./character"; +import Box from "./box"; + +export default class Player { + public readonly character: Character; + public readonly colour: Colour; + public readonly box: Box; + + constructor(props: PlayerProps) { + this.colour = props.colour; + this.box = new Box(props.box); + this.character = "box" in props.character ? new PacMan(props.character) : new Ghost(props.character); // TODO move box here + } + + public stealFrom(other: Player): void { + + } + +} diff --git a/pac-man-board-game/ClientApp/src/types/props.d.ts b/pac-man-board-game/ClientApp/src/types/props.d.ts index b18e248..2d439ac 100644 --- a/pac-man-board-game/ClientApp/src/types/props.d.ts +++ b/pac-man-board-game/ClientApp/src/types/props.d.ts @@ -26,3 +26,9 @@ interface BoxProps { pellets?: import("../game/pellet").default[], readonly colour: Colour, } + +interface PlayerProps { + readonly character: CharacterProps | PacManProps, + readonly colour: Colour, + readonly box: BoxProps, +}