Files

19 lines
520 B
C#
Raw Permalink Normal View History

2026-04-05 18:57:16 +10:00
using System.Collections.Generic;
using KitchenData;
using KitchenLib.Customs;
namespace Easter2025.Customs.Processes
{
public class SearchBush : CustomProcess
{
public override string UniqueNameID => "SearchBush";
public override List<(Locale, ProcessInfo)> InfoList => new List<(Locale, ProcessInfo)>
{
(Locale.English, new ProcessInfo
{
Name = "SearchBush",
Icon = "<sprite name=\"Search\">"
})
};
}
}