mirror of
https://github.com/jokerx3/HeatUp
synced 2026-07-27 11:39:45 +02:00
Merge branch 'master' of github.com:jokerx3/prp
Conflicts: HeatUp/.classpath
This commit is contained in:
@@ -10,3 +10,4 @@ tmp/
|
|||||||
local.properties
|
local.properties
|
||||||
.settings/
|
.settings/
|
||||||
.loadpath
|
.loadpath
|
||||||
|
.classpath
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<classpath>
|
|
||||||
<classpathentry kind="src" path="src"/>
|
|
||||||
<classpathentry exported="true" kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
|
||||||
<classpathentry kind="output" path="bin"/>
|
|
||||||
</classpath>
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package mapEngine;
|
|
||||||
|
|
||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
@@ -12,7 +12,7 @@ import java.util.Stack;
|
|||||||
|
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
|
|
||||||
import mapEngine2.Objekt;
|
import de.heatup.objects.*;
|
||||||
|
|
||||||
public class MapEngine {
|
public class MapEngine {
|
||||||
int[][] tiles;
|
int[][] tiles;
|
||||||
|
|||||||
@@ -45,15 +45,15 @@ public class Objekt {
|
|||||||
switch (objectIdentifier) {
|
switch (objectIdentifier) {
|
||||||
case '1':
|
case '1':
|
||||||
//leiterbahn
|
//leiterbahn
|
||||||
objectFilename="images/25x25_black.png";
|
objectFilename="../resources/images/25x25_black.png";
|
||||||
break;
|
break;
|
||||||
case '2':
|
case '2':
|
||||||
//2:harware
|
//2:harware
|
||||||
objectFilename="images/25x25_red.png";
|
objectFilename="../resources/images/25x25_red.png";
|
||||||
break;
|
break;
|
||||||
case '3':
|
case '3':
|
||||||
//3:wand
|
//3:wand
|
||||||
objectFilename="images/25x25_blue.png";
|
objectFilename="../resources/images/25x25_blue.png";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
objectFilename="images/25x25_orange.png";
|
objectFilename="images/25x25_orange.png";
|
||||||
|
|||||||
Reference in New Issue
Block a user