@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines (13 loc) • 420 B
TypeScript
import {Color} from "../../../../core/color/Color";
export class HighlightDefinition {
readonly color: Color
/**
* @deprecated use {@link Color#a} instead
*/
opacity: number
static rgba(r: number, g: number, b: number, a?: number): HighlightDefinition
equals(other: HighlightDefinition): boolean
hash(): number
fromJSON(json: any): void
toJSON(): any
}