-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
The library boilerplate should help with this, so the user doesn't have to add this boilerplate:
import BM="BM.bmasm";
import Init="Initialisation.bmasm";
public static void Setup()
{
}
private static Action? Proc = null;
public static ZsmPlayer Create()
{
return new ZsmPlayer();
}
public class ZsmPlayer
{
public void Build()
{
Proc = () =>
{
};
}
}
public override void Initialise()
{
Setup();
}
public void Generate()
{
if (Proc == null)
{
var fastDos = new FastDos();
fastDos.Build();
}
Proc();
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels