Move the Actor data models into a subfolder so I don't go as insane
This commit is contained in:
parent
3e40d0f8c5
commit
8ee455b977
3 changed files with 3 additions and 3 deletions
12
module/models/Actor/Sync.mjs
Normal file
12
module/models/Actor/Sync.mjs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
export class SyncData extends foundry.abstract.TypeDataModel {
|
||||
static defineSchema() {
|
||||
const fields = foundry.data.fields;
|
||||
return {
|
||||
value: new fields.NumberField({
|
||||
required: true,
|
||||
integer: true,
|
||||
initial: 100,
|
||||
}),
|
||||
};
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue