mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-10-31 21:00:51 +01:00
26 lines
No EOL
704 B
C#
26 lines
No EOL
704 B
C#
using Microsoft.Xna.Framework.Graphics;
|
|
using MLEM.Data.Content;
|
|
using MLEM.Font;
|
|
using MLEM.Startup;
|
|
|
|
namespace Tests {
|
|
public class TestGame : MlemGame {
|
|
|
|
public RawContentManager RawContent { get; private set; }
|
|
|
|
private TestGame() {}
|
|
|
|
protected override void LoadContent() {
|
|
base.LoadContent();
|
|
this.RawContent = new RawContentManager(this.Services, this.Content.RootDirectory);
|
|
this.UiSystem.Style.Font = new GenericSpriteFont(LoadContent<SpriteFont>("TestFont"));
|
|
}
|
|
|
|
public static TestGame Create() {
|
|
var game = new TestGame();
|
|
game.RunOneFrame();
|
|
return game;
|
|
}
|
|
|
|
}
|
|
} |