sdf-2d/build/src/graphics/drawables/i-drawable-descriptor.d.ts
schmelczerandras 77bde04db3 Add files
2020-09-15 10:08:16 +02:00

7 lines
210 B
TypeScript

import { IDrawable } from './i-drawable';
export interface IDrawableDescriptor {
uniformName: string;
countMacroName: string;
shaderCombinationSteps: Array<number>;
readonly empty: IDrawable;
}