TF-PlotSquared/PlotSquared/src/main/java/com/intellectualcrafters/plot/PlotComment.java

14 lines
342 B
Java
Raw Normal View History

package com.intellectualcrafters.plot;
public class PlotComment {
public final String comment;
public final int tier;
public final String senderName;
public PlotComment(String comment, String senderName, int tier) {
this.comment = comment;
this.tier = tier;
this.senderName = senderName;
}
}