/* * 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 @interface ATMSoundFX : NSObject { SystemSoundID _soundID; } + (id)soundEffectWithContentsOfFile:(NSString *)aPath; - (id)initWithContentsOfFile:(NSString *)path; - (void)play; @end