experiments-monogame/Inky/newproj.txt

21 lines
423 B
Plaintext

- new monogame cross platform
- add Nez as submodule
git submodule add git@github.com:prime31/Nez.git Nez
- SLN -> add existing projeectt -> Nez.Portable.MG38
- Proj -> add reference -> Nez
- change Game1.cs to
using Nez;
namespace Dakota
{
public class Game1 : Core
{
protected override void Initialize()
{
base.Initialize();
Scene = new SomeScene();
}
}
}