playcanvas-typings
Version:
TypeScript declaration files for PlayCanvas game engine
14 lines (12 loc) • 412 B
TypeScript
declare namespace pc {
/**
* @name pc.ScriptComponentSystem
* @description Create a new ScriptComponentSystem
* @class Allows scripts to be attached to an Entity and executed
* @param {pc.Application} app The application
* @extends pc.ComponentSystem
*/
class ScriptComponentSystem extends pc.ComponentSystem {
constructor(app: pc.Application)
}
}