aboutsummaryrefslogtreecommitdiff
path: root/internal/world/doc.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-16 01:59:27 -0400
committerhistoria <[not public]>2026-06-16 01:59:27 -0400
commit43f21aabae8924f35c12c8485e690aeefe0089fb (patch)
treeb5fbadb89df3cf4ffec86503bb8e2d7e52b27454 /internal/world/doc.go
parent4cc1ddcd185509080b4b3e15d1646567edd51c9d (diff)
downloadthehouseoficarus-43f21aabae8924f35c12c8485e690aeefe0089fb.tar.gz
feat: overhauled ansi color, added prompt options
Diffstat (limited to 'internal/world/doc.go')
-rw-r--r--internal/world/doc.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/internal/world/doc.go b/internal/world/doc.go
deleted file mode 100644
index cc11535..0000000
--- a/internal/world/doc.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Package world manages rooms, exits, ground items, mob instances,
-// and object instance state for the game world.
-//
-// Rooms are loaded from YAML files on every access (live-editable). Exits
-// support conditional blocking via the action.Condition system. Ground
-// items have independent despawn timers and combat-loot reservations.
-//
-// Object instance state (ObjState) tracks per-instance properties:
-// depletion with regen timers, shared depletion for trees with countdown,
-// quality for fire objects, and wandering for fishing spots.
-//
-// MobDef and MobInstance cover mob definitions and runtime instances.
-// The MobStore manages YAML loading, instance seeding, and per-room
-// mob lists. Mobs wander via legal (unconditioned) room exits.
-//
-// WordPrefixMatch provides bidirectional prefix matching used by
-// commands and object lookups.
-package world