TF-PlotSquared/PlotSquared/src/main/java/com/intellectualcrafters/plot/PlotComment.java
2014-10-28 10:20:52 +01:00

13 lines
342 B
Java

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;
}
}