Files
Lachlan Leone c3a5153a56 Initial Commit
2026-04-05 18:57:16 +10:00

19 lines
520 B
C#

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\">"
})
};
}
}