| 123456789101112131415161718192021222324252627 |
- //
- // The graphics GaLaXy Engine. The unit of GLScene
- //
- unit GLS.Sounds.Register;
- (* Design time registration code for the Sounds *)
- interface
- uses
- System.Classes,
- GLS.Sounds.BASS,
- GLS.Sounds.FMOD,
- GLS.Sounds.OpenAL,
- GLS.Sounds.WaveOut;
- procedure Register;
- implementation // ----------------------------------------------------------
- procedure Register;
- begin
- RegisterComponents('GLScene',[TGLSMBASS,TGLSMFMOD,TGLSMOpenAL,TGLSMWaveOut]);
- end;
- end.
|