Begin work on outlining dynamic side

This commit is contained in:
2024-07-27 16:26:45 +02:00
parent 1b501dee7e
commit a251913ebd
44 changed files with 2150 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
namespace PkmnLib.Dynamic;
public static class StaticHelpers
{
/// <summary>
/// A function to get the current date and time. This can be replaced in cases where the date and time
/// may not be the same as the system time.
/// </summary>
public static Func<DateTime> DateTimeProvider { get; set; } = () => DateTime.Now;
/// <summary>
/// Get the current date and time.
/// </summary>
public static DateTime GetCurrentDateTime() => DateTimeProvider();
}