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