Sha256: 8c8d99e9a9dc2b523cb115470561a0ea9a3026c344e3707f8ce4299a4f9b6563
Contents?: true
Size: 548 Bytes
Versions: 4
Compression:
Stored size: 548 Bytes
Contents
// // B2DContactFilter.h // Box2D // // Created by Juan Jose Karam on 6/15/13. // Copyright (c) 2013 Joybox. All rights reserved. // #import <Foundation/Foundation.h> #import "ContactFilter.h" @class B2DFixture; typedef bool (^shouldCollideCallback)(B2DFixture *fixtureA, B2DFixture *fixtureB); @interface B2DContactFilter : NSObject { ContactFilter *contactFilter; shouldCollideCallback shouldCollide; } @property (nonatomic, assign) ContactFilter *contactFilter; @property (nonatomic, copy) shouldCollideCallback shouldCollide; @end
Version data entries
4 entries across 2 versions & 1 rubygems