This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
UpTool2/UpToolLib/ExternalFunctionalityManager.cs

14 lines
326 B
C#
Raw Normal View History

2020-03-24 22:43:48 +01:00
using UpToolLib.DataStructures;
2020-03-24 20:53:23 +01:00
namespace UpToolLib
{
public static class ExternalFunctionalityManager
{
internal static IExternalFunctionality Instance;
2020-03-24 20:53:23 +01:00
2020-03-24 22:43:48 +01:00
public static void Init(IExternalFunctionality externalFunctionality)
{
Instance = externalFunctionality;
2020-03-24 22:43:48 +01:00
}
2020-03-24 20:53:23 +01:00
}
2020-03-24 22:43:48 +01:00
}