UNPKG

@prismadev/webmarine2d

Version:

Core utils for 2D verson of game engine Webmarine

13 lines (12 loc) 307 B
/** Renderer config reference */ export declare type RendererConfig = { /** Should the canvas fill entire window */ fullscreen?: boolean; /** Custom canvas size */ size?: { width: number; height: number; }; /** Antialiasing */ antialias?: boolean; };