From 8ee8982b8759bcae116647cc993867f4c8b0a6ce Mon Sep 17 00:00:00 2001 From: workhorse Date: Fri, 19 Jun 2026 20:24:52 -0400 Subject: reorganized items, objects, and rooms in directories. oranized module names. added startup checks. --- internal/game/types.go | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 internal/game/types.go (limited to 'internal/game/types.go') diff --git a/internal/game/types.go b/internal/game/types.go deleted file mode 100644 index d41b18a..0000000 --- a/internal/game/types.go +++ /dev/null @@ -1,29 +0,0 @@ -package game - -import "thehouseoficarus/internal/object" - -var EquipSlots = []object.EquipSlot{ - object.SlotHead, object.SlotNeck, object.SlotTorso, object.SlotLegs, - object.SlotHands, object.SlotFeet, object.SlotBack, object.SlotAmmo, - object.SlotMainHand, object.SlotOffHand, object.SlotRing, -} - -type itemMatch struct { - ID string - Name string - Slot int -} - -type xpGain struct { - Skill string - XP int -} - -type deathDrop struct { - itemID string - quantity int - totalVal int - isEquip bool - equipSlot object.EquipSlot - invSlot int -} -- cgit v1.2.3