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:
src
main
java
inf112
fiasko
roborally
test
java
@ -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
|
||||
|
Reference in New Issue
Block a user