mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
8 lines
No EOL
235 B
JavaScript
8 lines
No EOL
235 B
JavaScript
export default class DhpCombatant extends foundry.abstract.TypeDataModel {
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
active: new fields.BooleanField({ initial: false })
|
|
}
|
|
}
|
|
} |