+ Added formattable benchmark for returns and adjusted to vaguely fuzzy-search

This commit is contained in:
Matthew Cech
2019-05-05 18:55:05 -07:00
parent 3a8306f1e6
commit 99667330df
10 changed files with 248 additions and 30 deletions
+19
View File
@@ -0,0 +1,19 @@
package dataStructures;
import java.awt.Color;
public class KittyEmbed
{
public String title = null;
public Color color = null;
public String footerText = null;
public String authorText = null;
public String authorLink = null;
public String authorImage = null;
public String descriptionText = null;
public KittyEmbed()
{
this.title = "Untitled";
}
}