awayjs-display
Version:
AwayJS displaylist classes
19 lines (17 loc) • 531 B
text/typescript
import IEntity from "../display/IEntity";
import EntityNode from "../partition/EntityNode";
import PartitionBase from "../partition/PartitionBase";
/**
* IEntityNodeClass is an interface for the constructable class definition EntityNode that is used to
* create node objects in the partition pipeline that represent the contents of a Entity
*
* @class away.pool.IEntityNodeClass
*/
interface IEntityNodeClass
{
/**
*
*/
new(entity:IEntity, pool:PartitionBase):EntityNode;
}
export default IEntityNodeClass;