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