Start working on item behaviors

This commit is contained in:
Hri7566 2024-02-27 09:29:12 -05:00
parent ab034384bb
commit cb39e0e18e
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
export const itemBehaviorMap: TItemBehaviorMap = {};
export function addItemBehavior(itemID: string, bhv: TItemBehavior) {
itemBehaviorMap[itemID] = bhv;
}

View File