diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d7632a..e79f614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Fixed + +- **examples:** Add missing HUD example for one-player plateformer + ## 0.5.0 - 2019-06-16 - Meta: Add a Code of Conduct diff --git a/examples/gameplay/plateform/actors/player.lua b/examples/gameplay/plateform/actors/player.lua index add912c..74b0173 100644 --- a/examples/gameplay/plateform/actors/player.lua +++ b/examples/gameplay/plateform/actors/player.lua @@ -66,5 +66,8 @@ function Player:collisionResponse(collision) end end +function Player:drawHUD(id) + love.graphics.print(id .. " test", 4, 4) +end return Player