7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
export enum SoundScape{
|
|
Lagoon = 'lagoon',
|
|
Forest = 'forest',
|
|
Meadow = 'meadow',
|
|
Tropics = 'Tropics', // tropics not known by the backend, x represents tropics currently. it is a bug in the backend
|
|
}
|