feat(shared): add craft, build, dropoff goal types

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
root
2026-03-08 23:19:05 +00:00
parent dbe8ecd82e
commit b019beff82
+1 -1
View File
@@ -79,7 +79,7 @@ export interface StatModifiers {
}
export type MovementState = 'idle' | 'walking';
export type GoalType = 'wander' | 'eat' | 'rest' | 'gather';
export type GoalType = 'wander' | 'eat' | 'rest' | 'gather' | 'craft' | 'build' | 'dropoff';
export interface Movement {
state: MovementState;