blog/go/fonts/font/head.go

11 lines
310 B
Go
Raw Normal View History

2024-09-13 15:10:58 +08:00
package font
type Head struct {
Version string `json:"version"`
TableCount uint16 `json:"tableCount"`
Tables []Table `json:"tables"`
SearchRange uint16 `json:"searchRange"`
EntrySelector uint16 `json:"entrySelector"`
RangeShift uint16 `json:"rangeShift"`
}