MA-GD21 / toobin

Source Code, Documentation, Meeting notes
0 stars 0 forks source link

Player Health Monitoring #10

Open Aadjou opened 3 years ago

Aadjou commented 3 years ago

This piece of code tracks the health points of the player. It provides the current health points for other components (public functions)

Pseudocode class playerHealth { public int getHealth() private void setHealth() public void removeHealth(int hitpoints) public void addHealth(int hitpoints)

[...] }