mirror of
https://github.com/badvision/jace.git
synced 2026-04-20 10:17:04 +00:00
Remove lawless music selection, add additional default cards
This commit is contained in:
@@ -21,7 +21,6 @@ import jace.core.Card;
|
||||
import jace.core.Motherboard;
|
||||
import jace.core.Utility;
|
||||
import jace.core.Video;
|
||||
import jace.apple2e.Apple2e;
|
||||
import jace.library.MediaCache;
|
||||
import jace.library.MediaConsumer;
|
||||
import jace.library.MediaConsumerParent;
|
||||
@@ -40,7 +39,6 @@ import javafx.geometry.Insets;
|
||||
import javafx.scene.Node;
|
||||
import javafx.scene.Parent;
|
||||
import javafx.scene.control.Button;
|
||||
import javafx.scene.control.ComboBox;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.control.Slider;
|
||||
import javafx.scene.effect.DropShadow;
|
||||
|
||||
@@ -65,13 +65,13 @@ public class Apple2e extends Computer {
|
||||
@ConfigurableField(name = "Slot 1", shortName = "s1card")
|
||||
public DeviceSelection<Cards> card1 = new DeviceSelection<>(Cards.class, null);
|
||||
@ConfigurableField(name = "Slot 2", shortName = "s2card")
|
||||
public DeviceSelection<Cards> card2 = new DeviceSelection<>(Cards.class, null);
|
||||
public DeviceSelection<Cards> card2 = new DeviceSelection<>(Cards.class, Cards.AppleMouse, true);
|
||||
@ConfigurableField(name = "Slot 3", shortName = "s3card")
|
||||
public DeviceSelection<Cards> card3 = new DeviceSelection<>(Cards.class, null);
|
||||
@ConfigurableField(name = "Slot 4", shortName = "s4card")
|
||||
public DeviceSelection<Cards> card4 = new DeviceSelection<>(Cards.class, null);
|
||||
public DeviceSelection<Cards> card4 = new DeviceSelection<>(Cards.class, Cards.Mockingboard, true);
|
||||
@ConfigurableField(name = "Slot 5", shortName = "s5card")
|
||||
public DeviceSelection<Cards> card5 = new DeviceSelection<>(Cards.class, null);
|
||||
public DeviceSelection<Cards> card5 = new DeviceSelection<>(Cards.class, Cards.RamFactor, true);
|
||||
@ConfigurableField(name = "Slot 6", shortName = "s6card")
|
||||
public DeviceSelection<Cards> card6 = new DeviceSelection<>(Cards.class, Cards.DiskIIDrive, true);
|
||||
@ConfigurableField(name = "Slot 7", shortName = "s7card")
|
||||
|
||||
Reference in New Issue
Block a user