Sha256: 0cc133c5ee68096b12dfa2ee58d0cf1c27b8ef7fca285eaa0f0f84feff1bf13b

Contents?: true

Size: 746 Bytes

Versions: 1

Compression:

Stored size: 746 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 {
 
  ContactListener *contactListener;
  beginContactCallback beginContact;
  endContactCallback endContact;
}

@property (nonatomic, assign) ContactListener *contactListener;
@property (nonatomic, copy) beginContactCallback beginContact;
@property (nonatomic, copy) endContactCallback endContact;


@end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
joybox-0.0.6 vendor/vendor-osx/box_2d/include/B2DContactListener.h