@awayjs/view
Version:
View for AwayJS
17 lines (16 loc) • 527 B
text/typescript
import { _Pick_PickableBase } from './_Pick_PickableBase';
import { PickEntity } from './PickEntity';
import { ITraversable } from './ITraversable';
/**
* IMaterialClassGL is an interface for the constructable class definition GL_MaterialBase that is used to
* create render objects in the rendering pipeline to render the contents of a partition
*
* @class away.render.GL_MaterialBase
*/
export interface _IPick_PickableClass
{
/**
*
*/
new(traversable: ITraversable, pickEntity: PickEntity): _Pick_PickableBase;
}