Skip to content

Commit

Permalink
#502 Fixed code smells for BaseEntityConfig.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Caleb Murphy committed Oct 16, 2024
1 parent 14f9894 commit 266a20d
Showing 1 changed file with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@







package com.csse3200.game.entities.configs;

/**
* Defines a basic set of properties stored in entities config files to be loaded by Entity Factories.
*/
public class BaseEntityConfig {
public int health = 1;
public int baseAttack = 0;
public static final int health = 1;
public static final int baseAttack = 0;
}

0 comments on commit 266a20d

Please sign in to comment.