15 lines
178 B
Go
15 lines
178 B
Go
|
package npc
|
||
|
|
||
|
type Field struct {
|
||
|
Name string
|
||
|
Desc string
|
||
|
Regex string
|
||
|
ByteSize uint
|
||
|
BitSize uint
|
||
|
}
|
||
|
|
||
|
type FieldValue struct {
|
||
|
FieldRef *Field
|
||
|
Value string
|
||
|
}
|