17 lines
318 B
Java
17 lines
318 B
Java
package org.project.item;
|
|
|
|
import org.project.entity.Entity;
|
|
|
|
public class SellableItem extends Item{
|
|
private final int Price;
|
|
|
|
public SellableItem (String name, Entity owner, int price) {
|
|
super(name, owner);
|
|
this.Price = price;
|
|
}
|
|
|
|
public int GetPrice() {
|
|
return Price;
|
|
}
|
|
}
|