dungeoneer-cs/src/Roll.cs

21 lines
282 B
C#
Raw Normal View History

using System.Security.Cryptography;
using System.Text.RegularExpressions;
using Dungeoneer.Interpreter;
namespace Dungeoneer {
2024-04-01 21:41:04 -04:00
public static class RollMacro {
public static void Pool(TokenSet input) {
if(input.Count != 2)
foreach(var token in input)
);
2024-04-01 21:41:04 -04:00
}
}
}