luxlabs header browser preview


@class NSMapTable, NSMutableSet;
@protocol PXGEffectComponentDelegate;

@interface PXGEffectComponent : PXGComponent <PXGMutableEffectComponent> {
    struct os_unfair_lock_s { unsigned int _os_unfair_lock_opaque; } _lock;
    NSMapTable *_lock_effectById;
    NSMutableSet *_allEffects;
}

@property (weak, nonatomic) id<PXGEffectComponentDelegate> delegate;
@property (readonly, nonatomic) const unsigned int *effectIds;
@property (readonly, nonatomic) unsigned int *mutableEffectIds;

+ (unsigned long long)elementSize;

- (void)performChanges:(id /* block */)a0;
- (void)unregisterEffectId:(unsigned int)a0;
- (void)registerEffect:(id)a0 withEffectId:(unsigned int)a1;
- (id)initWithDataStore:(id)a0;
- (void)didUseEffect:(id)a0;
- (void).cxx_destruct;
- (id)effectForId:(unsigned int)a0;
- (void)cleanupUnusedObjects;
- (void)willDestroyEntities:(const struct { unsigned int x0; } *)a0 count:(long long)a1;

@end