SDV_Mods/CustomCropsDecay/ICropWithDecay.cs

17 lines
579 B
C#
Raw Normal View History

2020-04-18 20:24:31 +08:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using PyTK.CustomElementHandler;
using StardewModdingAPI.Utilities;
using StardewValley;
namespace CustomCropsDecay
{
interface ICropWithDecay : ICustomObject
{
float decayDays { get; set; }
SDate harvestDate { get; set; }
bool canStackWith(ISalable other);
void drawInMenu(SpriteBatch spriteBatch, Vector2 location, float scaleSize, float transparency, float layerDepth, StackDrawType drawStackNumber, Color color, bool drawShadow);
Item getOne();
}
}