Menu

[6e755d]: / PlayerPROKit / PPFXBusObject.h  Maximize  Restore  History

Download this file

31 lines (23 with data), 623 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// PPFXBusObject.h
// PPMacho
//
// Created by C.W. Betts on 1/8/14.
//
//
#ifndef __PLAYERPROKIT_PPFXBUSOBJECT_H__
#define __PLAYERPROKIT_PPFXBUSOBJECT_H__
#import <Foundation/Foundation.h>
#include <PlayerPROCore/MAD.h>
#import <PlayerPROKit/PPObjectProtocol.h>
#ifndef NS_DESIGNATED_INITIALIZER
#define NS_DESIGNATED_INITIALIZER
#endif
@interface PPFXBusObject : NSObject <PPObject>
@property (readonly) FXBus theBus;
@property BOOL bypass;
@property short copyID;
@property (getter = isActive) BOOL active;
- (nonnull instancetype)initWithFXBus:(nullable FXBus *)set NS_DESIGNATED_INITIALIZER;
@end
#endif