All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.i8k.karalight.world.Tree Maven / Gradle / Ivy

There is a newer version: 0.7.3
Show newest version
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';
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy