ppforge/field.go

15 lines
178 B
Go
Raw Normal View History

2022-11-23 20:33:07 +01:00
package npc
type Field struct {
Name string
Desc string
Regex string
ByteSize uint
BitSize uint
}
type FieldValue struct {
FieldRef *Field
Value string
}