first data modeling

This commit is contained in:
François-Xavier Guillois
2023-04-20 15:12:05 +02:00
parent fa8e32f4dd
commit 5ddd9db9b3
12 changed files with 1567 additions and 25 deletions
+17
View File
@@ -0,0 +1,17 @@
/**
* Define a set of template paths to pre-load
* Pre-loaded templates are compiled and cached for fast access when rendering
* @return {Promise}
*/
export const preloadHandlebarsTemplates = async function() {
return loadTemplates([
// Actor partials.
"systems/totem/templates/actor/parts/actor-traits.html",
"systems/totem/templates/actor/parts/actor-background.html",
"systems/totem/templates/actor/parts/actor-skills.html",
"systems/totem/templates/actor/parts/actor-items.html",
"systems/totem/templates/actor/parts/actor-cephalie.html",
"systems/totem/templates/actor/parts/actor-effects.html",
]);
};