UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

18 lines 489 B
/** * Module is responsible for generating a set of bids given some resources * @template RT */ export class TacticalModule<RT> { /** * @template RT * @param {Resource<RT>[]} resources * @returns {Promise<ResourceAllocationBid[]>} */ collectBids<RT_1>(resources: Resource<RT_1>[]): Promise<ResourceAllocationBid[]>; /** * @readonly * @type {boolean} */ readonly isTacticalModule: boolean; } //# sourceMappingURL=TacticalModule.d.ts.map