/
githubmirror
/
pixijs
Обзор
Документация
Войти
/
githubmirror
/
pixijs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/rendering/renderers/shared/system/System.ts
26 строк
769 B
Zyie
chore: add standard/advanced tags to documentation (#11448)
03 июн 2025, 10:12
Не верифицирован
03 июн 2025, 10:12
7d91234
Код
Авторство
О чём код?
import type { Renderer } from '../../types'; import type { RendererDestroyOptions } from './AbstractRenderer'; /** * A system is a generic interface for a renderer system. * It is used to define the methods that a system should implement. * @category rendering * @advanced */ export interface System<INIT_OPTIONS = null, DESTROY_OPTIONS = RendererDestroyOptions> { init?: (options: INIT_OPTIONS) => void; /** Generic destroy methods to be overridden by the subclass */ destroy?: (options?: DESTROY_OPTIONS) => void; } /** * The constructor for a System. * It is used to create instances of systems that can be added to a renderer. * @category rendering * @advanced */ export interface SystemConstructor { new (renderer: Renderer): System; }