raspberry_games_engine_helpers 1.8.397 → 1.8.398

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ (function (factory) {
2
+ if (typeof define === 'function' && define.amd)
3
+ define(['exports'], factory);
4
+ else if (typeof exports === 'object')
5
+ factory(module.exports);
6
+ else
7
+ globalThis['Logic_Debertz-ai_module'] = factory(typeof globalThis['Logic_Debertz-ai_module'] === 'undefined' ? {} : globalThis['Logic_Debertz-ai_module']);
8
+ }(function (_) {
9
+ 'use strict';
10
+ //region block: pre-declaration
11
+ //endregion
12
+ return _;
13
+ }));
14
+
15
+ //# sourceMappingURL=Logic_Debertz-ai_module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -216,7 +216,7 @@
216
216
  initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
217
217
  //endregion
218
218
  function GameEngineConfig() {
219
- this.version = '1.8.397';
219
+ this.version = '1.8.398';
220
220
  }
221
221
  protoOf(GameEngineConfig).k17 = function () {
222
222
  return this.version;
@@ -744,12 +744,14 @@ export declare namespace games.jass.logic.data.models {
744
744
  }
745
745
  export declare namespace games.jass.logic.data.models {
746
746
  class EngineBotConfig {
747
- constructor(botExitsWhenNGameNumberIsFinished?: Nullable<number>, autoStepLastCard?: boolean, simulateBotThinkingDelay?: boolean, isDelayForBot?: boolean);
747
+ constructor(botExitsWhenNGameNumberIsFinished?: Nullable<number>, autoStepLastCard?: boolean, simulateBotThinkingDelay?: boolean, isDelayForBot?: boolean, enableBotChat?: boolean, openAiApiKey?: Nullable<string>);
748
748
  get botExitsWhenNGameNumberIsFinished(): Nullable<number>;
749
749
  get autoStepLastCard(): boolean;
750
750
  get simulateBotThinkingDelay(): boolean;
751
751
  get isDelayForBot(): boolean;
752
- copy(botExitsWhenNGameNumberIsFinished?: Nullable<number>, autoStepLastCard?: boolean, simulateBotThinkingDelay?: boolean, isDelayForBot?: boolean): games.jass.logic.data.models.EngineBotConfig;
752
+ get enableBotChat(): boolean;
753
+ get openAiApiKey(): Nullable<string>;
754
+ copy(botExitsWhenNGameNumberIsFinished?: Nullable<number>, autoStepLastCard?: boolean, simulateBotThinkingDelay?: boolean, isDelayForBot?: boolean, enableBotChat?: boolean, openAiApiKey?: Nullable<string>): games.jass.logic.data.models.EngineBotConfig;
753
755
  toString(): string;
754
756
  hashCode(): number;
755
757
  equals(other: Nullable<any>): boolean;