- Added `actionContextBuilder` to multiple turn action files to utilize the default action context builder. - Implemented specific context builders for actions requiring additional context, such as war configurations, world summaries, and general statistics. - Created new `actionContext.ts` and `actionContextHelpers.ts` files to define interfaces and helper functions for managing action contexts. - Enhanced context handling for nation and general actions, ensuring proper data injection for turn execution.
12 lines
426 B
TypeScript
12 lines
426 B
TypeScript
export * from './definition.js';
|
|
export * from './engine.js';
|
|
export * from './turn/commandEnv.js';
|
|
export * from './turn/actionContext.js';
|
|
export * from './turn/commandModule.js';
|
|
export * from './turn/commandProfile.js';
|
|
export * from './turn/general/index.js';
|
|
export * from './turn/nation/index.js';
|
|
export * from './instant/general/index.js';
|
|
export * from './instant/nation/index.js';
|
|
export * from './admin/index.js';
|