Rendering stuff

This commit is contained in:
Matt Thorson
2020-08-09 01:29:46 -07:00
parent 5cef6c2b26
commit 637dcb21a3
5 changed files with 197 additions and 24 deletions

View File

@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Strawberry
{
public class Batcher
{
List<Batch> batchStack = new System.Collections.List<Batch>() ~ DeleteContainerAndItems!(_);
Batch top => batchStack.Count > 0 ? batchStack[batchStack.Count - 1] : null;
private class Batch
{
}
}
}