15 lines
369 B
C#
15 lines
369 B
C#
using Microsoft.Xna.Framework.Graphics;
|
|
using StardewValley;
|
|
|
|
namespace StardewModdingAPI
|
|
{
|
|
class ModItem : Object
|
|
{
|
|
public Item AsItem { get { return this; } }
|
|
public override string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public int ID { get; set; }
|
|
public Texture2D Texture { get; set; }
|
|
}
|
|
}
|