This commit is contained in:
Boki 2026-03-03 12:54:30 -05:00
parent a8341e8232
commit a8c43ba7e2
43 changed files with 2618 additions and 48 deletions

View file

@ -0,0 +1,9 @@
namespace Roboto.Core;
public record QuestProgress
{
public string? QuestName { get; init; }
public byte StateId { get; init; }
public string? StateText { get; init; }
public string? ProgressText { get; init; }
}