mirror of https://github.com/minexew/Shrine.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
353 B
21 lines
353 B
Cd(__DIR__);; |
|
|
|
#help_index "Snd" |
|
class CSndWaveCtrl |
|
{ |
|
I64 sample_rate,sample_bits,channels; |
|
F64 freq_multiplier,amp_multiplier; |
|
F64 phase,last_y,last_dydt,next_y; |
|
}; |
|
|
|
public U0 SndTaskEndCB() |
|
{//Will turn-off snd when a task gets killed. |
|
Snd; |
|
Exit; |
|
} |
|
|
|
#include "SndMath" |
|
#include "SndMusic" |
|
#include "SndEffects" |
|
#include "SndFile" |
|
Cd("..");;
|
|
|