File size: 306 Bytes
b24de8b
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
declare class Color32 {
    readonly r: number;
    readonly g: number;
    readonly b: number;
    readonly a: number;
    constructor(r?: number, g?: number, b?: number, a?: number);
    flat(): number[];
    flatNorm(): number[];
    toHexString(): string;
    toString(): string;
}
export { Color32 };