-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#502 Fixed code smells for BaseEntityConfig.java
- Loading branch information
Caleb Murphy
committed
Oct 16, 2024
1 parent
14f9894
commit 266a20d
Showing
1 changed file
with
2 additions
and
9 deletions.
There are no files selected for viewing
11 changes: 2 additions & 9 deletions
11
source/core/src/main/com/csse3200/game/entities/configs/BaseEntityConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |