mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 14:46:45 +01:00
18 lines
451 B
Java
18 lines
451 B
Java
package com.intellectualcrafters.plot.object;
|
|
|
|
public class PlotItemStack {
|
|
public final int id;
|
|
public final short data;
|
|
public final int amount;
|
|
public final String name;
|
|
public final String[] lore;
|
|
|
|
public PlotItemStack(int id, short data, int amount, String name, String[] lore) {
|
|
this.id = id;
|
|
this.data = data;
|
|
this.amount = amount;
|
|
this.name = name;
|
|
this.lore = lore;
|
|
}
|
|
}
|