1234567891011121314151617181920212223 |
- /*
- * ATMSoundFX.h
- * ATMHud
- *
- * Created by Marcel Müller on 2011-03-01.
- * Copyright (c) 2010-2011, Marcel Müller (atomcraft)
- * All rights reserved.
- *
- * https://github.com/atomton/ATMHud
- */
- #import <AudioToolbox/AudioServices.h>
- @interface ATMSoundFX : NSObject
- {
- SystemSoundID _soundID;
- }
- + (id)soundEffectWithContentsOfFile:(NSString *)aPath;
- - (id)initWithContentsOfFile:(NSString *)path;
- - (void)play;
- @end
|