Initial Commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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\">"
|
||||
})
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user