mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-04-04 00:26:04 +08:00
33 lines
521 B
Brainfuck
33 lines
521 B
Brainfuck
using System;
|
|
namespace Strawberry
|
|
{
|
|
static public class Engine
|
|
{
|
|
static public void Run(Module module)
|
|
{
|
|
Startup();
|
|
|
|
Module currentModule = module;
|
|
while (currentModule != null)
|
|
{
|
|
let newModule = currentModule.[Friend]Run();
|
|
currentModule = newModule;
|
|
}
|
|
|
|
Shutdown();
|
|
}
|
|
|
|
static private void Startup()
|
|
{
|
|
Input.[Friend]Startup();
|
|
Tracker.[Friend]BuildAssignmentLists();
|
|
}
|
|
|
|
static private void Shutdown()
|
|
{
|
|
Input.[Friend]Shutdown();
|
|
Sprite.[Friend]Dispose();
|
|
}
|
|
}
|
|
}
|