Versions in this module Expand all Collapse all v0 v0.1.0 Aug 27, 2020 Changes in this version + type Tile struct + ID string + MaxX int + MaxY int + MinX int + MinY int + func (t *Tile) Rect() image.Rectangle + type Tileset struct + Data string + Height int + Tiles []*Tile + Width int + func Load(uri ...string) ([]*Tileset, error) + func (ts *Tileset) Get(id string) (Tile, bool) + func (ts *Tileset) Image(tile Tile) (image.Image, error) + func (ts *Tileset) List(wr io.Writer) error