weather-te
Version:
A light weather visualization library.
8 lines (7 loc) • 317 B
TypeScript
import { ProgramWrapper } from './util';
export declare abstract class ParticleProgram {
screenProgram: ProgramWrapper<string, any>;
drawParticleProgram: ProgramWrapper<string, any>;
updateParticleProgram: ProgramWrapper<string, any>;
abstract createProgram(gl: WebGLRenderingContext): void;
}