GLS.Sounds.Register.pas 554 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // The graphics engine GLScene https://github.com/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. // ------------------------------------------------------------------
  15. implementation
  16. // ------------------------------------------------------------------
  17. procedure Register;
  18. begin
  19. RegisterComponents('GLScene',[TGLSMBASS,TGLSMFMOD,TGLSMOpenAL,TGLSMWaveOut]);
  20. end;
  21. end.