1
0
mirror of https://github.com/inf112-v20/Fiasko.git synced 2025-07-05 07:34:43 +02:00

Legger til enum Action og bytter navn på abstractions pakken

Bytter pakkenavn fra abstractions til element_properties
This commit is contained in:
2020-02-19 11:15:23 +01:00
parent 81553f67d9
commit bec414e676
13 changed files with 28 additions and 14 deletions

@ -1,12 +1,12 @@
package inf112.fiasko.roborally.objects;
import inf112.fiasko.roborally.abstractions.GameTexture;
import inf112.fiasko.roborally.element_properties.GameTexture;
/**
* This class represents an object that can be drawn using libgdx
*/
public class DrawableObject implements IDrawableObject {
private GameTexture texture;
private final GameTexture texture;
private int xPos;
private int yPos;
private int width = 64;

@ -1,6 +1,6 @@
package inf112.fiasko.roborally.objects;
import inf112.fiasko.roborally.abstractions.GameTexture;
import inf112.fiasko.roborally.element_properties.GameTexture;
/**
* This interface describes an object drawable using libgdx