Add project files.
This commit is contained in:
18
AOC Runner/IProblemBase.cs
Normal file
18
AOC Runner/IProblemBase.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AOC.Runner;
|
||||
public interface IProblemBase
|
||||
{
|
||||
void LoadInput();
|
||||
|
||||
void CalculatePart1();
|
||||
|
||||
void PrintPart1();
|
||||
|
||||
void CalculatePart2();
|
||||
void PrintPart2();
|
||||
}
|
||||
Reference in New Issue
Block a user