Add missing javadoc elements

Signed-off-by: Chris Cromer <chris@cromer.cl>
This commit is contained in:
2019-10-06 17:23:47 -03:00
parent 0b1014041d
commit f6a9518717
2 changed files with 51 additions and 0 deletions

View File

@@ -52,6 +52,8 @@ public class Gem extends Object {
/**
* Load the gem animations
*
* @param type The type of gem to load the animation for
*/
private void loadGemAnimation(Type type) {
if (type == null) {
@@ -165,7 +167,13 @@ public class Gem extends Object {
* The type of gem
*/
public enum Type {
/**
* The life gem which should be blue
*/
LIFE,
/**
* The death gem which should be red
*/
DEATH
}