2014-08-25 03:55:10 +00:00
|
|
|
package com.shatteredpixel.shatteredpixeldungeon.items;
|
|
|
|
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
|
|
|
|
import com.shatteredpixel.shatteredpixeldungeon.items.EquipableItem;
|
|
|
|
|
|
|
|
public abstract class KindofMisc extends EquipableItem {
|
|
|
|
|
2015-06-12 20:22:26 +00:00
|
|
|
public abstract void activate(Char ch);
|
2014-08-25 03:55:10 +00:00
|
|
|
}
|