13 lines
205 B
Go
13 lines
205 B
Go
package modules
|
|
|
|
type Pf2eModule struct {
|
|
settings Pf2eSettings
|
|
}
|
|
|
|
type Pf2eSettings struct {
|
|
showEffectPanel bool
|
|
showCheckDialogs bool
|
|
showDamageDialogs bool
|
|
monochromeDarkvision bool
|
|
}
|