mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-06 20:42:55 +00:00
13 lines
342 B
Java
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;
|
|
}
|
|
}
|