19 lines
257 B
Objective-C
19 lines
257 B
Objective-C
//
|
|
// InputController.m
|
|
// Cog
|
|
//
|
|
// Created by Zaphod Beeblebrox on 8/2/05.
|
|
// Copyright 2005 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "InputController.h"
|
|
|
|
|
|
@implementation InputController
|
|
|
|
- (void)play
|
|
{
|
|
[soundFile open:filename];
|
|
}
|
|
|
|
@end
|