AI_Diplomacy/diplomacy/daide/index.ts

15 lines
434 B
TypeScript

// diplomacy/daide/index.ts
// Replicating exports from diplomacy/daide/__init__.py
/**
* Flag indicating if ADM (Administrative) messages are enabled.
* In the Python __init__.py, this was set to False.
*/
export const ADM_MESSAGE_ENABLED: boolean = false;
/**
* Default level, possibly for some DAIDE protocol feature or logging.
* In the Python __init__.py, this was set to 30.
*/
export const DEFAULT_LEVEL: number = 30;