8 lines
98 B
TypeScript
8 lines
98 B
TypeScript
export enum Shininess
|
|
{
|
|
None = 0,
|
|
Low = 0x40,
|
|
Medium = 0x80,
|
|
High = 0xC0
|
|
}
|