Feature: Emulate Disney Infinity Base

Create, Load and Clear Infinity figures on an emulated base in the UI
This commit is contained in:
Joshua de Reeper 2023-01-25 10:51:02 +13:00
parent 88320f385d
commit f632f94645
18 changed files with 1554 additions and 21 deletions

View file

@ -224,7 +224,10 @@ void MenuBar::AddToolsMenu()
tools_menu->addAction(tr("FIFO Player"), this, &MenuBar::ShowFIFOPlayer);
tools_menu->addAction(tr("&Skylanders Portal"), this, &MenuBar::ShowSkylanderPortal);
auto* usb_device_menu = new QMenu(tr("Emulated USB Devices"), tools_menu);
usb_device_menu->addAction(tr("&Skylanders Portal"), this, &MenuBar::ShowSkylanderPortal);
usb_device_menu->addAction(tr("&Infinity Base"), this, &MenuBar::ShowInfinityBase);
tools_menu->addMenu(usb_device_menu);
tools_menu->addSeparator();