mirror of
https://github.com/GoodStartLabs/AI_Diplomacy.git
synced 2026-04-30 17:40:47 +00:00
15 lines
434 B
TypeScript
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;
|