de.i8k.karalight.world.Tree Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karalight Show documentation
Show all versions of karalight Show documentation
Kara Light is a IDE-agnostic Kara clone.
package de.i8k.karalight.world;
public class Tree extends AbstractElement {
public Tree(int x, int y, World world) {
super("tree.png", x, y, 50, world);
}
@Override
public char asChar() {
return 'T';
}
}