Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.23 KB

README.md

File metadata and controls

28 lines (21 loc) · 1.23 KB

osu-Gameboy

CodeFactor Build status NuGet NuGet NuGet NuGet

alt text

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();