cocoaTouch/SchemeEditViewController.h
author smxx
Thu, 04 Feb 2010 14:48:49 +0000
changeset 2745 11fce231f24a
parent 2701 3a8560c00f78
permissions -rw-r--r--
Engine: + Split PlaySound into PlaySound and LoopSound + Added overloaded versions of PlaySound/LoopSound that won't require voicepack parameter + LoopSound now allows multiple copies of the same sound to play looped and returns the channel used for playback (to stop them later) + StopSound now allows either a specific sound (single playback) or channel (single playback as well as looped playback) to be stopped + SoundChannel attribute for Gears to be used when looping sounds
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     1
//
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     2
//  SchemeEditViewController.h
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     3
//  hwengine
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     4
//
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/01/10.
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     7
//
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     8
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    10
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    11
2701
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2687
diff changeset
    12
@interface SchemeEditViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2687
diff changeset
    13
    UITableViewCell *cell0;
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2687
diff changeset
    14
	UITableView *table;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    15
}
2701
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2687
diff changeset
    16
@property (nonatomic, retain) IBOutlet UITableViewCell *cell0;
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2687
diff changeset
    17
@property (nonatomic, retain) IBOutlet UITableView *table;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    18
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    19
@end