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