void PlaySound(string filename)
Function plays a sound file. The file must be located in the terminal_dir\sounds directory or in its subdirectory.
サウンド ファイルを再生する関数です。ファイルは terminal_dir\sounds ディレクトリまたはそのサブディレクトリ内に置く必要があります。
Parameters:
パラメータ:
1 2 | <b>filename</b> - Path to the sound file. サウンド ファイルへのパス。 |
Sample:
サンプル:
1 | if(IsDemo()) PlaySound("alert.wav"); |