generated from bing/readnotes
9 lines
157 B
Go
9 lines
157 B
Go
|
package font
|
||
|
|
||
|
type Table struct {
|
||
|
Name string `json:"name"`
|
||
|
Sum uint32 `json:"sum"`
|
||
|
Offset uint32 `json:"offset"`
|
||
|
Length uint32 `json:"length"`
|
||
|
}
|