7 lines
83 B
TypeScript
7 lines
83 B
TypeScript
export enum ChatAudibleLevel
|
|
{
|
|
Not = -1,
|
|
Barely = 0,
|
|
Fully = 1
|
|
}
|