aboutsummaryrefslogtreecommitdiff
path: root/internal/game/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game/types.go')
-rw-r--r--internal/game/types.go29
1 files changed, 0 insertions, 29 deletions
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
-}