- Added a deck editor icon for products. Hooked up the icon in FSkin and added a commented out basic hook for it in SEditorUtil

This commit is contained in:
moomarc
2013-02-07 07:29:17 +00:00
parent aceff2002d
commit 32e0374166
3 changed files with 6 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 629 KiB

After

Width:  |  Height:  |  Size: 632 KiB

View File

@@ -33,6 +33,7 @@ public final class SEditorUtil {
/** An enum to encapsulate metadata for the stats/filter objects. */ /** An enum to encapsulate metadata for the stats/filter objects. */
public static enum StatTypes { public static enum StatTypes {
TOTAL (FSkin.ZoneImages.ICO_HAND, null), TOTAL (FSkin.ZoneImages.ICO_HAND, null),
// PRODUCTS (FSkin.EditorImages.IMG_PRODUCTS, null),
WHITE (FSkin.ManaImages.IMG_WHITE, CardRulesPredicates.Presets.IS_WHITE), WHITE (FSkin.ManaImages.IMG_WHITE, CardRulesPredicates.Presets.IS_WHITE),
BLUE (FSkin.ManaImages.IMG_BLUE, CardRulesPredicates.Presets.IS_BLUE), BLUE (FSkin.ManaImages.IMG_BLUE, CardRulesPredicates.Presets.IS_BLUE),

View File

@@ -324,6 +324,7 @@ public enum FSkin {
IMG_LAND (new int[] {120, 720, 40, 40}), /** */ IMG_LAND (new int[] {120, 720, 40, 40}), /** */
IMG_MULTI (new int[] {80, 720, 40, 40}), /** */ IMG_MULTI (new int[] {80, 720, 40, 40}), /** */
IMG_PLANESWALKER (new int[] {200, 720, 40, 40}), /** */ IMG_PLANESWALKER (new int[] {200, 720, 40, 40}), /** */
IMG_PRODUCTS (new int[] {80, 760, 40, 40}), /** */
IMG_SORCERY (new int[] {160, 720, 40, 40}); IMG_SORCERY (new int[] {160, 720, 40, 40});
private int[] coords; private int[] coords;