20 lines
377 B
C#
20 lines
377 B
C#
using StardewValley.Menus;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UIInfoSuite.Options
|
|
{
|
|
class ModOptionsPageIcon : IClickableMenu
|
|
{
|
|
|
|
|
|
public override void receiveRightClick(int x, int y, bool playSound = true)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|