Add minimap waypoints

This commit is contained in:
Oliver-Akins 2024-12-28 23:38:54 -07:00
parent f1d0d781d8
commit 9c967aa354
2 changed files with 7 additions and 0 deletions

View file

@ -4,6 +4,7 @@ import { gameTerms } from "../../gameTerms.mjs";
const { fields } = foundry.data;
export class WeaponData extends foundry.abstract.TypeDataModel {
// MARK: Schema
static defineSchema() {
return {
traits: new fields.SetField(
@ -32,10 +33,12 @@ export class WeaponData extends foundry.abstract.TypeDataModel {
};
};
// MARK: Base Data
prepareBaseData() {
super.prepareBaseData();
};
// MARK: Derived Data
prepareDerivedData() {
super.prepareDerivedData();
};