15 lines
307 B
C#
15 lines
307 B
C#
using Chickensoft.Introspection;
|
|
using Chickensoft.Serialization;
|
|
|
|
namespace Zennysoft.Ma.Adapter;
|
|
|
|
[Meta, Id("quest_data")]
|
|
public partial record QuestData
|
|
{
|
|
[Save("death_count")]
|
|
public int DeathCount { get; set; } = 0;
|
|
|
|
[Save("quest_data_1")]
|
|
public bool QuestMarker1 { get; set; } = false;
|
|
}
|