Files
MonoGame.Extended/Source/Demos/Demo.Features/Screens/KeyboardOptionsScreen.cs
T

19 lines
401 B
C#

using System;
namespace Demo.Features.Screens
{
public class KeyboardOptionsScreen : MenuScreen
{
public KeyboardOptionsScreen(IServiceProvider serviceProvider)
: base(serviceProvider)
{
}
public override void LoadContent()
{
base.LoadContent();
AddMenuItem("Back", Show<OptionsScreen>);
}
}
}