6 lines
150 B
Python
6 lines
150 B
Python
import collections
|
|
|
|
Glyph = collections.namedtuple(
|
|
"Glyph",
|
|
["bitmap", "tile_index", "width", "height", "dx", "dy", "shift_x", "shift_y"],
|
|
)
|