Initialize the data model and register it
This commit is contained in:
parent
b33258ec54
commit
5933473e4a
3 changed files with 21 additions and 1 deletions
10
module/data/Actor/Hero.mjs
Normal file
10
module/data/Actor/Hero.mjs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export class HeroData extends foundry.abstract.TypeDataModel {
|
||||
static defineSchema() {
|
||||
const schema = {};
|
||||
return schema;
|
||||
};
|
||||
|
||||
prepareBaseData() {};
|
||||
|
||||
prepareDerivedData() {};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue