GLS.Sounds.Register.pas 469 B

123456789101112131415161718192021222324252627
  1. //
  2. // The graphics GaLaXy Engine. The unit of GLScene
  3. //
  4. unit GLS.Sounds.Register;
  5. (* Design time registration code for the Sounds *)
  6. interface
  7. uses
  8. System.Classes,
  9. GLS.Sounds.BASS,
  10. GLS.Sounds.FMOD,
  11. GLS.Sounds.OpenAL,
  12. GLS.Sounds.WaveOut;
  13. procedure Register;
  14. implementation // ----------------------------------------------------------
  15. procedure Register;
  16. begin
  17. RegisterComponents('GLScene',[TGLSMBASS,TGLSMFMOD,TGLSMOpenAL,TGLSMWaveOut]);
  18. end;
  19. end.