AlttdGriefPrevention/src/me/ryanhamshire/GriefPrevention/CustomizableMessage.java
Ryan Hamshire 03c920f568 4.5
2012-06-11 17:16:13 -07:00

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