RC-20 | Add Fate path to datamodel

This commit is contained in:
Oliver-Akins 2024-12-10 23:33:09 -07:00
parent 27f668b92f
commit 550aeb084f
2 changed files with 17 additions and 0 deletions

6
module/gameTerms.mjs Normal file
View file

@ -0,0 +1,6 @@
export const FatePath = {
NORTH: `North`,
EAST: `East`,
SOUTH: `South`,
WEST: `West`,
};