the initial commit to the repo.

This commit is contained in:
NukedBart 2025-10-25 01:27:14 +08:00
parent 025c032b8c
commit 1b757591b9
264 changed files with 21882 additions and 0 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
namespace stupid.solutions;
[Serializable]
public class ItemTemplate
{
public int StackMaxSize { get; set; }
public bool QuestItem { get; set; }
public string Description { get; set; }
public Dictionary<string, SlotData> Slots { get; set; }
}