@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
18 lines • 374 B
TypeScript
/**
*
* @author Alex Goldring
* @copyright Company Named Limited (c) 2025
*/
export class ResourceAllocation {
/**
*
* @param {Resource[]} [resources=[]]]
*/
constructor(resources?: Resource[]);
/**
* Resource set being bid on
* @type {Resource[]}
*/
resources: Resource[];
}
//# sourceMappingURL=ResourceAllocation.d.ts.map