ATMSoundFX.h 430 B

1234567891011121314151617181920212223
  1. /*
  2. * ATMSoundFX.h
  3. * ATMHud
  4. *
  5. * Created by Marcel Müller on 2011-03-01.
  6. * Copyright (c) 2010-2011, Marcel Müller (atomcraft)
  7. * All rights reserved.
  8. *
  9. * https://github.com/atomton/ATMHud
  10. */
  11. #import <AudioToolbox/AudioServices.h>
  12. @interface ATMSoundFX : NSObject
  13. {
  14. SystemSoundID _soundID;
  15. }
  16. + (id)soundEffectWithContentsOfFile:(NSString *)aPath;
  17. - (id)initWithContentsOfFile:(NSString *)path;
  18. - (void)play;
  19. @end