initial
This commit is contained in:
13
BatchOszExtractor.Core/BatchOszExtractor.Core.csproj
Normal file
13
BatchOszExtractor.Core/BatchOszExtractor.Core.csproj
Normal 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>
|
||||
11
BatchOszExtractor.Core/Extract.cs
Normal file
11
BatchOszExtractor.Core/Extract.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.ComponentModel.Design;
|
||||
|
||||
namespace BatchOszExtractor.Core;
|
||||
|
||||
public class Extract
|
||||
{
|
||||
private void SelectMaps(SelectionType type, string MapRange)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
8
BatchOszExtractor.Core/SelectionType.cs
Normal file
8
BatchOszExtractor.Core/SelectionType.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace BatchOszExtractor.Core;
|
||||
|
||||
public enum SelectionType
|
||||
{
|
||||
Single,
|
||||
Multiple,
|
||||
Range
|
||||
}
|
||||
Reference in New Issue
Block a user