Sha256: 539ee0479cbbd0f4be9d91b66814e06f1a5123a4af8d3d98471df92961f2a3e0
Contents?: true
Size: 634 Bytes
Versions: 4
Compression:
Stored size: 634 Bytes
Contents
// // B2DContactListener.h // Box2D // // Created by Juan Jose Karam on 3/6/13. // Copyright (c) 2013 CurveBeryl. All rights reserved. // #import <Foundation/Foundation.h> #include "ContactListener.h" @class B2DBody; typedef void (^beginContactCallback)(B2DBody *firstBody, B2DBody *secondBody, BOOL isTouching); typedef void (^endContactCallback)(B2DBody *firstBody, B2DBody *secondBody); @interface B2DContactListener : NSObject @property (nonatomic, assign) ContactListener *contactListener; @property (nonatomic, copy) beginContactCallback beginContact; @property (nonatomic, copy) endContactCallback endContact; @end
Version data entries
4 entries across 4 versions & 1 rubygems