aboutsummaryrefslogtreecommitdiff
path: root/Mundus/Service/Tiles/Items/ItemTile.cs
blob: 56c95a2627c6128df2c124f57061eba74335fa7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using Gtk;
using Mundus.Service.Tiles;

namespace Mundus.Service.Tiles.Items {
    public abstract class ItemTile : ITile {
        public string stock_id { get; private set; }
        public Image Texture { get; private set; }

        public ItemTile(string stock_id) {
            this.stock_id = stock_id;
            this.Texture = new Image( stock_id, IconSize.Dnd );
        }
    }
}