summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/ModItem.cs
blob: aea3a131c43f07e18bc491753c6dad7f6e3fb980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
    }
}