Cow runner game
npm install @cowprotocol/cow-runner-gameThe trex runner game extracted from chrome offline error page, but with less dinosaurs and more Cows!

This project is a typescript library that provides CowGame as a react component.
Changes over the original:
* Broken down into smaller entities (see src/game/model)
* Converted into typescript project
* The game has ben wrapped into a React component
* The React component is exported as a library
* Integrated with webpack. You can build the HTML page or run it in dev mode
> 🏗 Pending to add the sprites and styles for the cow game.
bash
yarn add @cowprotocol/cow-runner-game
`Use the
CowGame react component:
`tsx
import { CowGame } from '@cowprotocol/cow-runner-game'export default function Your () {
return (
Cow Game
Try not to get 🥪
)
}
`Development
Install dependencies
`bash
yarn
`Run dev browser
`bash
yarn start
`Build library
`bash
yarn build
``