boring-game 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+4/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +2/−0
- boring-game.cabal +1/−1
- src/Pong.hs +1/−1
README.md view
@@ -1,1 +1,3 @@ Just a boring game !++
boring-game.cabal view
@@ -1,5 +1,5 @@ name: boring-game-version: 0.1.0.0+version: 0.1.0.1 synopsis: An educational game description: Using Gloss to build game in Haskell homepage: https://github.com/checkraiser/boring-game#readme
src/Pong.hs view
@@ -29,7 +29,7 @@ initialState :: PongGame initialState = Game { ballLoc = (-10, 30)- , ballVel = (1, -3)+ , ballVel = (1, -10) , player1 = 40 , player2 = -80 }