Skip to content
Snippets Groups Projects

WIP: Resolve "BubbleWrap Game Sprites"

Closed Karoline Velsvik Berge requested to merge 18-bubblewrap-game-sprites into dev
1 file
+ 36
0
Compare changes
  • Side-by-side
  • Inline
package com.gameware.game.sprites;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.math.Vector3;
public class Bubble extends Sprite {
private Vector3 position;
private int width;
private int height;
private Object bounds;
private Texture bubble;
public void reset() {
}
public Object report() {
return bounds;
}
public void draw() {
}
public void update() {
}
public void dispose() {
bubble.dispose();
}
}
Loading