This commit is contained in:
2024-05-17 23:26:51 -04:00
commit 5f3b8f9e8d
19 changed files with 741 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\BatchOszExtractor.CLI\BatchOszExtractor.CLI.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,11 @@
using System.ComponentModel.Design;
namespace BatchOszExtractor.Core;
public class Extract
{
private void SelectMaps(SelectionType type, string MapRange)
{
}
}

View File

@@ -0,0 +1,8 @@
namespace BatchOszExtractor.Core;
public enum SelectionType
{
Single,
Multiple,
Range
}