AlttdGriefPrevention/src/me/ryanhamshire/GriefPrevention/CustomizableMessage.java

15 lines
277 B
Java
Raw Normal View History

2012-06-12 00:16:13 +00:00
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;
}
}