This is an unofficial Egg for osu!lazer
How to work :
//Create gameboy
var gameboy = new GameBoyContainer();
//Load rom
string romPath = "Resources/ROM/Tetris.gb";
gameBoyContainer.LoadDevice(romPath, Path.ChangeExtension(romPath, ".sav"));
//Add to parent container
Add(gameBoyContainer);
//Run Gameboy device
gameBoyContainer.RunDevice();