RC-79 | Skill | Setup

This commit is contained in:
Oliver-Akins 2025-01-26 16:09:34 -07:00
parent 517913f20c
commit 8fe6c148fc
4 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,26 @@
export class SkillData extends foundry.abstract.TypeDataModel {
// MARK: Schema
static defineSchema() {
return {};
};
// MARK: Base Data
prepareBaseData() {
super.prepareBaseData();
};
// MARK: Derived Data
prepareDerivedData() {
super.prepareDerivedData();
};
// #region Getters
// #endregion
// #region Sheet Data
getFormFields(_ctx) {
const fields = [];
return fields;
};
// #endregion
};