Rework title font and fix pause logo switching

This commit is contained in:
2026-01-05 22:43:52 +01:00
parent 871a18a0ee
commit 679b3208cd
87 changed files with 776 additions and 230 deletions

View File

@@ -0,0 +1,12 @@
/**
* Data model pour les ressources
*/
export class RessourceDataModel extends foundry.abstract.TypeDataModel {
static defineSchema() {
const fields = foundry.data.fields;
return {
pointdev: new fields.NumberField({ initial: 0, integer: true }),
description: new fields.HTMLField({ initial: "" })
};
}
}