diff options
Diffstat (limited to 'NET/worlds/scape/InventoryAvatar.java')
| -rw-r--r-- | NET/worlds/scape/InventoryAvatar.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/NET/worlds/scape/InventoryAvatar.java b/NET/worlds/scape/InventoryAvatar.java new file mode 100644 index 0000000..dfd7b47 --- /dev/null +++ b/NET/worlds/scape/InventoryAvatar.java @@ -0,0 +1,20 @@ +package NET.worlds.scape; + +public class InventoryAvatar extends InventoryItem { + public InventoryAvatar(String id, String name) { + super(id, name); + } + + public InventoryAvatar(String id, String name, int qty) { + super(id, name, qty); + } + + public InventoryAvatar(InventoryAvatar in) { + super(in); + } + + @Override + public InventoryItem cloneItem() { + return new InventoryAvatar(this); + } +} |