JScratch
Loading...
Searching...
No Matches
BackgroundTile.java
Go to the documentation of this file.
1package generated;
2
3import com.jscratch.*;
4
5public class BackgroundTile extends Sprite {
6 public BackgroundTile(String name) {
7 super(name);
8 }
9
10 // Background tiles are positioned absolutely on screen
11 public void superGoTo(int x, int y) {
12 super.goTo(x, y);
13 }
14}
Sprite(String name)
Definition Sprite.java:38
void superGoTo(int x, int y)