15 lines
277 B
Java
15 lines
277 B
Java
|
|
package me.ryanhamshire.GriefPrevention;
|
||
|
|
|
||
|
|
public class CustomizableMessage
|
||
|
|
{
|
||
|
|
public Messages id;
|
||
|
|
public String text;
|
||
|
|
public String notes;
|
||
|
|
|
||
|
|
public CustomizableMessage(Messages id, String text, String notes)
|
||
|
|
{
|
||
|
|
this.id = id;
|
||
|
|
this.text = text;
|
||
|
|
this.notes = notes;
|
||
|
|
}
|
||
|
|
}
|