UnitSystem inplementation started, Calculation started
This commit is contained in:
19
UnitSystem/UnitSystemService.cs
Normal file
19
UnitSystem/UnitSystemService.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using StructureHelper.UnitSystem.Systems;
|
||||
|
||||
namespace StructureHelper.UnitSystem
|
||||
{
|
||||
public class UnitSystemService
|
||||
{
|
||||
private IUnitSystem currentSystem;
|
||||
public IUnitSystem GetCurrentSystem() => currentSystem;
|
||||
public UnitSystemService()
|
||||
{
|
||||
currentSystem = new SystemSi();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user