Initial commit

This commit is contained in:
Asriel Camora
2023-06-12 10:21:21 -07:00
commit bea568013c
7 changed files with 255 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="2.1.11" />
</ItemGroup>
</Project>
+9
View File
@@ -0,0 +1,9 @@
namespace Craftimizer;
internal class Program
{
private static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Craftimizer;
internal record Recipe
{
public int Difficulty { get; init; }
public int Durability { get; init; }
public int Quality { get; init; }
public int Progress { get; init; }
public int Level { get; init; }
public int MaxLevel { get; init; }
public int ID { get; init; }
}