Initial commit - framework

This commit is contained in:
2022-11-30 17:19:53 -06:00
commit 23945154d4
39 changed files with 9161 additions and 0 deletions

25
src/Template.cs Normal file
View File

@ -0,0 +1,25 @@
namespace aoc2022;
internal class DayTemplate : Day
{
IEnumerable<string>? lines;
internal override void Parse()
{
lines = Util.ReadAllLines("inputs/##.txt");
}
internal override string Part1()
{
return $"<+white>";
}
internal override string Part2()
{
return $"<+white>";
}
}