14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
/**
|
|
* Water Functions
|
|
* @public
|
|
* @noSelf
|
|
*/
|
|
declare namespace water {
|
|
|
|
function get_waves_intensity(): float;
|
|
function set_waves_intensity(intensity: float): void;
|
|
function reset_waves_intensity(): void;
|
|
|
|
}
|
|
|