Skip to content
Snippets Groups Projects
Commit 5bb49a0c authored by zlatax's avatar zlatax
Browse files

final check through code copmpleted

parent 2dd75516
Branches
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/project-1/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_14" project-jdk-name="14" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>
\ No newline at end of file
......@@ -3,6 +3,7 @@
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/SWEN20003_a1.iml" filepath="$PROJECT_DIR$/.idea/SWEN20003_a1.iml" />
<module fileurl="file://$PROJECT_DIR$/project-1/bagel.iml" filepath="$PROJECT_DIR$/project-1/bagel.iml" />
</modules>
</component>
</project>
\ No newline at end of file
File moved
No preview for this file type
......@@ -3,7 +3,7 @@ import bagel.*;
import bagel.util.*;
import java.lang.*;
public class Entity {
public abstract class Entity {
private Image img;
private APoint pos;
......
......@@ -2,7 +2,7 @@ import bagel.*;
public class Player extends Entity{
private int energy; //displayed at position (20,760) in black font size 20 and font DejaVuSans-Bol(ttf file provided in res zip file)
private static int stepsize = 10;
private final static int stepsize = 10;
public Player(String filename, APoint pos, int energy) {
super(filename, pos);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment