JScratch
Loading...
Searching...
No Matches
DndEntity.java
Go to the documentation of this file.
1package com.burrbox.dndiablo;
2
3import com.jscratch.Sprite;
4
5
6/*
7 * the base enemy class
8 */
9public class DndEntity extends Sprite {
11 public int worldX;
12 public int worldY;
13
14
15 public DndEntity(String name) {
16 super(name);
17 }
18
19}
Sprite(String name)
Definition Sprite.java:38