Move the Actor data models into a subfolder so I don't go as insane

This commit is contained in:
Oliver-Akins 2024-01-15 21:49:13 -07:00
parent 3e40d0f8c5
commit 8ee455b977
3 changed files with 3 additions and 3 deletions

View 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,
}),
};
};
};