import { Game } from '../../core'; import { Entity } from '../../entity'; import { Color, Vec2 } from '../../math'; export declare class Char2D extends Entity { constructor(position: Vec2, scale: Vec2, texCoords: Vec2, color: Color); tick(game: Game, frameDelta: number): void; }