1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // Multi-Phasic Applications: SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.plugin
.multivm
;
12 import lombok
.AllArgsConstructor
;
15 * Default SummerCoat Variants.
20 public enum BangletVariant
23 NONE("", "none:none:none:none"),
25 /** Pure SummerCoat (only SummerCoat). */
27 "summercoat:pure:summercoat:none"),
32 /** The title for this variant. */
33 public final String properNoun
;
35 /** The banglet for this variant. */
36 public final String banglet
;